Skip to content

Commit dc1ecb4

Browse files
Remove Update
1 parent 838cc44 commit dc1ecb4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

SandboxiePlus/SandMan/OnlineUpdater.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,7 @@ void COnlineUpdater::Process()
521521

522522
void COnlineUpdater::CheckForUpdates(bool bManual)
523523
{
524+
return;
524525
if (m_CheckMode == eManual || m_CheckMode == eAuto)
525526
return; // already in progress
526527

SandboxiePlus/SandMan/SandMan.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,6 +1232,7 @@ void CSandMan::CreateView(int iViewMode)
12321232

12331233
void CSandMan::CheckForUpdates(bool bManual)
12341234
{
1235+
return;
12351236
m_pUpdater->CheckForUpdates(bManual);
12361237
}
12371238

@@ -4042,9 +4043,7 @@ void CSandMan::OpenUrl(QUrl url)
40424043
}
40434044

40444045
if (scheme == "sbie") {
4045-
if (path == "/check")
4046-
m_pUpdater->CheckForUpdates(true);
4047-
else if (path == "/installer")
4046+
if (path == "/installer")
40484047
m_pUpdater->RunInstaller(false);
40494048
else if (path == "/apply")
40504049
m_pUpdater->ApplyUpdate(COnlineUpdater::eFull, false);

0 commit comments

Comments
 (0)