1
0
Fork 0

Update ComposeModal.vue, add 451 http code warning

This commit is contained in:
Daniel Supernault 2020-07-25 20:55:40 -06:00
parent c271babda3
commit b213dcda0b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 15 additions and 4 deletions

View File

@ -700,10 +700,21 @@ export default {
self.page = 2; self.page = 2;
}, 300); }, 300);
}).catch(function(e) { }).catch(function(e) {
self.uploading = false; switch(e.response.status) {
io.value = null; case 451:
swal('Oops, something went wrong!', 'An unexpected error occurred.', 'error'); self.uploading = false;
self.page = 2; io.value = null;
swal('Banned Content', 'This content has been banned and cannot be uploaded.', 'error');
self.page = 2;
break;
default:
self.uploading = false;
io.value = null;
swal('Oops, something went wrong!', 'An unexpected error occurred.', 'error');
self.page = 2;
break;
}
}); });
io.value = null; io.value = null;
self.uploadProgress = 0; self.uploadProgress = 0;