mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 14:26:06 +02:00
Fix user profile badges and random errors
This commit is contained in:
+2
-2
@@ -561,7 +561,7 @@ export const useUserStore = defineStore('User', () => {
|
||||
}
|
||||
}
|
||||
for (const prop in json) {
|
||||
if (typeof ref[prop] !== 'undefined') {
|
||||
if (typeof json[prop] !== 'undefined') {
|
||||
ref[prop] = json[prop];
|
||||
}
|
||||
}
|
||||
@@ -1732,7 +1732,7 @@ export const useUserStore = defineStore('User', () => {
|
||||
}
|
||||
}
|
||||
for (const prop in json) {
|
||||
if (typeof ref[prop] !== 'undefined') {
|
||||
if (typeof json[prop] !== 'undefined') {
|
||||
ref[prop] = json[prop];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user