aboutsummaryrefslogtreecommitdiffstats
path: root/vencord-patches/0006-Updater-Disable-auto-update-by-default.patch
blob: fb9517efe1029d5e81e34b32f6125ee4624c6884 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 9159ba3d4e133cda94df24fec231dd256d94c70c 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.0