mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Fix empty instanceId when instanceId is same as worldId?!
This commit is contained in:
@@ -731,6 +731,8 @@ speechSynthesis.getVoices();
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ctx.worldId = _tag;
|
ctx.worldId = _tag;
|
||||||
|
ctx.instanceId = _tag;
|
||||||
|
ctx.instanceName = _tag;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ctx;
|
return ctx;
|
||||||
@@ -1423,6 +1425,7 @@ speechSynthesis.getVoices();
|
|||||||
travelingToInstance: '',
|
travelingToInstance: '',
|
||||||
travelingToLocation: '',
|
travelingToLocation: '',
|
||||||
travelingToWorld: '',
|
travelingToWorld: '',
|
||||||
|
note: '',
|
||||||
// VRCX
|
// VRCX
|
||||||
$location: {},
|
$location: {},
|
||||||
$location_at: Date.now(),
|
$location_at: Date.now(),
|
||||||
@@ -1768,6 +1771,9 @@ speechSynthesis.getVoices();
|
|||||||
privateOccupants: 0,
|
privateOccupants: 0,
|
||||||
occupants: 0,
|
occupants: 0,
|
||||||
instances: [],
|
instances: [],
|
||||||
|
featured: false,
|
||||||
|
organization: '',
|
||||||
|
previewYoutubeId: '',
|
||||||
// VRCX
|
// VRCX
|
||||||
$isLabs: false,
|
$isLabs: false,
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -1543,6 +1543,10 @@ html
|
|||||||
.x-friend-item(style="width:100%;cursor:default")
|
.x-friend-item(style="width:100%;cursor:default")
|
||||||
.detail
|
.detail
|
||||||
span.name Note
|
span.name Note
|
||||||
|
span.extra(v-text="userDialog.ref.note")
|
||||||
|
.x-friend-item(style="width:100%;cursor:default")
|
||||||
|
.detail
|
||||||
|
span.name Local Note
|
||||||
el-input.extra(v-model="userDialog.memo" type="textarea" :rows="2" :autosize="{ minRows: 1, maxRows: 20 }" placeholder="Click to add a note" size="mini" resize="none")
|
el-input.extra(v-model="userDialog.memo" type="textarea" :rows="2" :autosize="{ minRows: 1, maxRows: 20 }" placeholder="Click to add a note" size="mini" resize="none")
|
||||||
.x-friend-item(style="width:100%;cursor:default")
|
.x-friend-item(style="width:100%;cursor:default")
|
||||||
.detail
|
.detail
|
||||||
@@ -1835,14 +1839,20 @@ html
|
|||||||
.x-friend-item(style="cursor:default")
|
.x-friend-item(style="cursor:default")
|
||||||
.detail
|
.detail
|
||||||
span.name Last Visit
|
span.name Last Visit
|
||||||
|
el-tooltip(v-if="!hideTooltips" placement="top" style="margin-left:5px" content="Info from local database may not be accurate")
|
||||||
|
i.el-icon-warning
|
||||||
span.extra {{ worldDialog.lastVisit | formatDate('long') }}
|
span.extra {{ worldDialog.lastVisit | formatDate('long') }}
|
||||||
.x-friend-item(@click="showPreviousInstancesWorldDialog(worldDialog.ref)")
|
.x-friend-item(@click="showPreviousInstancesWorldDialog(worldDialog.ref)")
|
||||||
.detail
|
.detail
|
||||||
span.name Visit Count
|
span.name Visit Count
|
||||||
|
el-tooltip(v-if="!hideTooltips" placement="top" style="margin-left:5px" content="Info from local database may not be accurate")
|
||||||
|
i.el-icon-warning
|
||||||
span.extra(v-text="worldDialog.visitCount")
|
span.extra(v-text="worldDialog.visitCount")
|
||||||
.x-friend-item(style="cursor:default")
|
.x-friend-item(style="cursor:default")
|
||||||
.detail
|
.detail
|
||||||
span.name Time Spent
|
span.name Time Spent
|
||||||
|
el-tooltip(v-if="!hideTooltips" placement="top" style="margin-left:5px" content="Info from local database may not be accurate")
|
||||||
|
i.el-icon-warning
|
||||||
span.extra(v-if="worldDialog.timeSpent === 0") -
|
span.extra(v-if="worldDialog.timeSpent === 0") -
|
||||||
span.extra(v-else) {{ worldDialog.timeSpent | timeToText }}
|
span.extra(v-else) {{ worldDialog.timeSpent | timeToText }}
|
||||||
el-tab-pane(label="JSON")
|
el-tab-pane(label="JSON")
|
||||||
|
|||||||
Reference in New Issue
Block a user