Enable compression for http requests (#888)

Enable compression for http requests made by VRCX to improve bandwidth usage and speed.
Also removed duplicate setWorldImage assigning.
This commit is contained in:
Nekromateion
2024-08-29 07:41:41 +02:00
committed by GitHub
parent bc565abdae
commit 59237b5b11
2 changed files with 7 additions and 18 deletions

View File

@@ -23522,21 +23522,6 @@ speechSynthesis.getVoices();
}
});
API.setWorldImage = function (params) {
return this.call(`worlds/${params.id}`, {
method: 'PUT',
params
}).then((json) => {
var args = {
json,
params
};
this.$emit('WORLDIMAGE:SET', args);
this.$emit('WORLD', args);
return args;
});
};
API.$on('WORLDIMAGE:SET', function (args) {
$app.worldDialog.loading = false;
$app.changeWorldImageDialogLoading = false;