Skip to content

Commit 898abdb

Browse files
committed
Merge branch 'release/1.4.3'
2 parents 850bdfc + e9e9a23 commit 898abdb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.cryptomator</groupId>
77
<artifactId>integrations-linux</artifactId>
8-
<version>1.4.2</version>
8+
<version>1.4.3</version>
99

1010
<name>integrations-linux</name>
1111
<description>Provides optional Linux services used by Cryptomator</description>

src/main/java/org/cryptomator/linux/tray/AppindicatorTrayMenuController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private void showTrayIconWithSVG(String s) {
4949
try (var arena = Arena.ofConfined()) {
5050
var svgSourcePath = System.getProperty(SVG_SOURCE_PROPERTY);
5151
// flatpak
52-
if (svgSourcePath != null) {
52+
if (svgSourcePath == null) {
5353
indicator = app_indicator_new(arena.allocateUtf8String(APP_INDICATOR_ID),
5454
arena.allocateUtf8String(s),
5555
APP_INDICATOR_CATEGORY_APPLICATION_STATUS());

0 commit comments

Comments
 (0)