Merge pull request #4435 from thelounge/bookworm/uploadErr

upload: improve error message
This commit is contained in:
Max Leiter 2021-12-28 02:40:29 -07:00 committed by GitHub
commit acf520bd9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class Uploader {
// if there is still data to be uploaded. Servers will only error in extreme cases like bad
// authentication or server-side errors.
response = {
error: `Upload aborted: HTTP ${this.xhr.status}`,
error: `Upload aborted: ${this.xhr.statusText} (HTTP ${this.xhr.status})`,
};
}