Skip to content

Commit 4c482a9

Browse files
committed
Don't check for updates when disabled
1 parent 5f0b00c commit 4c482a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ZuneModdingHelper/Services/UpdateHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class UpdateHelper
2727

2828
public async Task CheckForUpdatesAsync(bool isUserTriggered)
2929
{
30-
if (_isRunning)
30+
if (_isRunning || !Enabled)
3131
return;
3232

3333
_isRunning = true;

0 commit comments

Comments
 (0)