mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
fix: lint
This commit is contained in:
+8
-3
@@ -13520,7 +13520,8 @@ speechSynthesis.getVoices();
|
||||
D.ref = ref2;
|
||||
this.updateVRChatAvatarCache();
|
||||
}
|
||||
API.getAvatar({avatarId}).then((args) => {
|
||||
API.getAvatar({avatarId})
|
||||
.then((args) => {
|
||||
var {ref} = args;
|
||||
D.ref = ref;
|
||||
this.updateVRChatAvatarCache();
|
||||
@@ -13548,7 +13549,10 @@ speechSynthesis.getVoices();
|
||||
var fileVersion = parseInt(extractFileVersion(assetUrl), 10);
|
||||
if (!fileId) {
|
||||
fileId = extractFileId(ref.assetUrl);
|
||||
fileVersion = parseInt(extractFileVersion(ref.assetUrl), 10);
|
||||
fileVersion = parseInt(
|
||||
extractFileVersion(ref.assetUrl),
|
||||
10
|
||||
);
|
||||
}
|
||||
D.fileSize = '';
|
||||
if (fileId) {
|
||||
@@ -13570,7 +13574,8 @@ speechSynthesis.getVoices();
|
||||
D.fileSize = 'Error';
|
||||
});
|
||||
}
|
||||
}).finally(() => {
|
||||
})
|
||||
.finally(() => {
|
||||
D.loading = false;
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user