Revert "Add platform tag for Tails AppImage"

This reverts commit af696f4d56.

I had planned to ship an AppImage version without embedded Tor for Tails
users, but due to ongoing build system changes this won't be ready for
the next release.
This commit is contained in:
tobtoht 2022-06-23 19:58:24 +02:00
parent 3c7f1800c2
commit e7ef6d0ed3
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C

View file

@ -1513,11 +1513,7 @@ QString MainWindow::getPlatformTag() {
return "win";
#endif
#ifdef Q_OS_LINUX
bool isAppImage = !qEnvironmentVariableIsEmpty("APPIMAGE");
if (TailsOS::detect() && isAppImage) {
return "tails-appimage";
}
if (isAppImage) {
if (!qEnvironmentVariableIsEmpty("APPIMAGE")) {
return "linux-appimage";
}
return "linux";