mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-24 09:13:50 +02:00
Fixes
This commit is contained in:
@@ -759,7 +759,11 @@ export const useUserStore = defineStore('User', () => {
|
||||
* @param {string} userId
|
||||
*/
|
||||
function showUserDialog(userId) {
|
||||
if (!userId || typeof userId !== 'string') {
|
||||
if (
|
||||
!userId ||
|
||||
typeof userId !== 'string' ||
|
||||
userId === 'usr_00000000-0000-0000-0000-000000000000'
|
||||
) {
|
||||
return;
|
||||
}
|
||||
const D = userDialog.value;
|
||||
|
||||
Reference in New Issue
Block a user