Skip to content

Commit

Permalink
style: single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tienisto committed Oct 15, 2024
1 parent 48aef53 commit ffb3a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/util/native/tray_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Future<void> initTray() async {
return;
} else if (checkPlatform([TargetPlatform.linux])) {
String icon;
if (await File("/.flatpak-info").exists()) {
if (await File('/.flatpak-info').exists()) {
// Icon for Flatpak, which must exist in /app/share/icons/hicolor/*x*/apps.
icon = 'org.localsend.localsend_app-tray';
} else {
Expand Down

0 comments on commit ffb3a14

Please sign in to comment.