We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7214218 commit 51ed6dbCopy full SHA for 51ed6db
src/main/java/org/cryptomator/linux/update/FlatpakUpdater.java
@@ -51,16 +51,7 @@ public String isUpdateAvailable(DistributionChannel.Value channel) {
51
LOG.error("Wrong channel provided: {}", channel);
52
return null;
53
}
54
- try (ExecutorService executor = Executors.newFixedThreadPool(10)) {
55
- var task = new UpdateCheckerTask(APP_NAME);
56
- executor.submit(task);
57
- try {
58
- return task.get();
59
- } catch (Exception e) {
60
- LOG.error(e.toString(), e.getCause());
61
- }
62
63
- return null;
+ return portal.getlatestReleaseFor(APP_NAME);
64
65
66
@Override
0 commit comments