vexcord/vencord-patches/0006-Updater-Disable-auto-update-by-default.patch
1024x2 7c16e8d1d6
Update patches
Rebased onto commit cb2848f186f3d074d1a3390643aba70fa481eb6b
2024-09-24 17:08:57 +01:00

26 lines
647 B
Diff

From 7e2d8a5d6a1a1b54d6f423469cae5c6d7841feb1 Mon Sep 17 00:00:00 2001
From: 1024x2 <2pow11@gmail.com>
Date: Sun, 21 Apr 2024 21:22:25 +0100
Subject: [PATCH 6/8] Updater: Disable auto-update by default
---
src/api/Settings.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/api/Settings.ts b/src/api/Settings.ts
index ac116f5..0f4c269 100644
--- a/src/api/Settings.ts
+++ b/src/api/Settings.ts
@@ -77,7 +77,7 @@ export interface Settings {
}
const DefaultSettings: Settings = {
- autoUpdate: true,
+ autoUpdate: false,
autoUpdateNotification: true,
useQuickCss: true,
themeLinks: [],
--
2.46.1