Skip to content

Commit

Permalink
chore: add missing ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
Nethius committed Jan 9, 2025
1 parent 98a5219 commit 574773f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/ui/controllers/updateController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ void UpdateController::checkForUpdates()

void UpdateController::runInstaller()
{
#if !defined(Q_OS_ANDROID) && !defined(Q_OS_IOS)
if (m_downloadUrl.isEmpty()) {
logger.error() << "Download URL is empty";
return;
Expand Down Expand Up @@ -170,6 +171,7 @@ void UpdateController::runInstaller()
}
reply->deleteLater();
});
#endif
}

#if defined(Q_OS_WINDOWS)
Expand Down

0 comments on commit 574773f

Please sign in to comment.