fix: prevent default autoUpdateVRCX config from being unexpectedly suppressed #282

Closed
opened 2026-04-05 16:17:16 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @xuan25 on 10/12/2025

fix: prevent default autoUpdateVRCX config from being unexpectedly suppressed

For OS dstros that should not rely on a 3rd-party updater, a reasonable patch like

--- a/src/stores/vrcxUpdater.js
+++ b/src/stores/vrcxUpdater.js
@@ -18,1 +18,1 @@
-        autoUpdateVRCX: 'Auto Download',
+        autoUpdateVRCX: 'Off',

should do the job. For example, for Arch Linux, people can apply a patch like this https://aur.archlinux.org/cgit/aur.git/tree/build.patch?h=vrcx

However, the default value in state.autoUpdateVRCX was suppressed by configRepository.getString('VRCX_autoUpdateVRCX', ''). This causes the default value in state.autoUpdateVRCX to be ignored and potentially misleading, which can confuse people and make the issue harder to trace.

*Originally created by @xuan25 on 10/12/2025* fix: prevent default autoUpdateVRCX config from being unexpectedly suppressed For OS dstros that should not rely on a 3rd-party updater, a reasonable patch like ``` --- a/src/stores/vrcxUpdater.js +++ b/src/stores/vrcxUpdater.js @@ -18,1 +18,1 @@ - autoUpdateVRCX: 'Auto Download', + autoUpdateVRCX: 'Off', ``` should do the job. For example, for Arch Linux, people can apply a patch like this https://aur.archlinux.org/cgit/aur.git/tree/build.patch?h=vrcx However, the default value in `state.autoUpdateVRCX` was suppressed by `configRepository.getString('VRCX_autoUpdateVRCX', '')`. This causes the default value in `state.autoUpdateVRCX` to be ignored and potentially misleading, which can confuse people and make the issue harder to trace.
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/VRCX#282