mirror of
https://git.1024x2.xyz/1024x2/vexcord.git
synced 2025-04-19 13:06:31 +02:00
26 lines
647 B
Diff
26 lines
647 B
Diff
From cdbd25f4d76bf0a7fbf57c26b3ce14cd8f90f5f4 Mon Sep 17 00:00:00 2001
|
|
From: 1024x2 <2pow11@gmail.com>
|
|
Date: Sun, 21 Apr 2024 21:22:25 +0100
|
|
Subject: [PATCH 6/6] 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 696c12c..4503011 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.45.0
|
|
|