mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Fix print owner name
This commit is contained in:
+1
-1
@@ -18534,7 +18534,7 @@ console.log(`isLinux: ${LINUX}`);
|
|||||||
try {
|
try {
|
||||||
var owner = await API.getCachedUser({ userId: print.ownerId });
|
var owner = await API.getCachedUser({ userId: print.ownerId });
|
||||||
console.log(
|
console.log(
|
||||||
`Print spawned by ${owner.displayName} id:${print.id} note:${print.note} authorName:${print.authorName} at:${new Date().toISOString()}`
|
`Print spawned by ${owner?.json?.displayName} id:${print.id} note:${print.note} authorName:${print.authorName} at:${new Date().toISOString()}`
|
||||||
);
|
);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
|
|||||||
Reference in New Issue
Block a user