Don't check for updates when disabled

This commit is contained in:
Yoshi Askharoun
2025-09-02 12:19:23 -07:00
parent 5f0b00cfa8
commit 4c482a949e
+1 -1
View File
@@ -27,7 +27,7 @@ public class UpdateHelper
public async Task CheckForUpdatesAsync(bool isUserTriggered)
{
if (_isRunning)
if (_isRunning || !Enabled)
return;
_isRunning = true;