Style and explanation improvements

This commit is contained in:
Itay Grudev 2021-09-20 16:22:02 +03:00 committed by GitHub
parent a30128bef2
commit 6aa2d348e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,12 +147,12 @@ void SingleApplicationPrivate::genBlockServerName()
#ifdef Q_OS_WIN
appData.addData( SingleApplication::app_t::applicationFilePath().toLower().toUtf8() );
#else
// If the application is running as an AppImage then the APPIMAGE env var should be used
// instead of applicationPath() as each instance is launched with its own executable path
const QByteArray appImagePath = qgetenv( "APPIMAGE" );
if ( appImagePath.isEmpty() ) {
// Not running as AppImage: use path to executable file
if( appImagePath.isEmpty() ){ // Not running as AppImage: use path to executable file
appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() );
} else {
// Running as AppImage: Use absolute path to AppImage file
} else { // Running as AppImage: Use absolute path to AppImage file
appData.addData( appImagePath );
}
#endif