1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-01-08 12:28:04 -05:00
This commit is contained in:
Reinhard Pointner 2018-07-13 02:35:43 +07:00
parent f803cf209f
commit ea771e9c4c

View File

@ -93,7 +93,7 @@ public final class Settings {
}
public static boolean isLinuxApp() {
return isApplicationDeployment("snap", "deb", "tar");
return isApplicationDeployment("snap", "deb", "tar", "spk", "qpkg");
}
public static boolean isMacApp() {
@ -109,7 +109,7 @@ public final class Settings {
}
public static boolean isAutoUpdateEnabled() {
return isApplicationDeployment("appx", "mas", "snap", "spk");
return isApplicationDeployment("appx", "mas", "snap");
}
private static boolean isApplicationDeployment(String... ids) {