mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 06:16:05 +02:00
Fixes
This commit is contained in:
@@ -961,7 +961,7 @@ export const useNotificationStore = defineStore('Notification', () => {
|
||||
fileId,
|
||||
fileVersion
|
||||
);
|
||||
} else if (imageUrl) {
|
||||
} else if (imageUrl && imageUrl.startsWith('http')) {
|
||||
fileVersion = imageUrl.split('/').pop(); // 1416226261.thumbnail-500.png
|
||||
fileId = fileVersion.split('.').shift(); // 1416226261
|
||||
imageLocation = await AppApi.GetImage(
|
||||
|
||||
@@ -211,7 +211,7 @@ export const useAppearanceSettingsStore = defineStore(
|
||||
JSON.stringify(TRUST_COLOR_DEFAULTS)
|
||||
),
|
||||
configRepository.getBool('VRCX_notificationIconDot', true),
|
||||
configRepository.getBool('VRCX_navIsCollapsed', true),
|
||||
configRepository.getBool('VRCX_navIsCollapsed', false),
|
||||
configRepository.getBool('VRCX_dataTableStriped', false),
|
||||
configRepository.getBool('VRCX_showPointerOnHover', false),
|
||||
configRepository.getString(
|
||||
|
||||
Reference in New Issue
Block a user