]> source.dussan.org Git - nextcloud-server.git/commit
Fix default toast message for failed uploads with HTTP/2 32878/head
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Tue, 14 Jun 2022 14:07:35 +0000 (16:07 +0200)
committerDaniel Calviño Sánchez <danxuliu@gmail.com>
Tue, 14 Jun 2022 14:07:35 +0000 (16:07 +0200)
commite15b43d976691b4d0f9901650178779bdd9a5d6c
treee06b62ab351db310d6cb1e55257be1e33c2741f3
parent752277925159685fe2430011e4b74546f1aa296c
Fix default toast message for failed uploads with HTTP/2

When an upload fails a toast is shown with either a specific message or
just the textual part of the HTTP error code (which comes from the
upload failure handler and set by "jQuery.ajax()". However, if there
is neither a message nor an error then the toast will show the default
message from the Toastify-js library, which is an undescriptive "Hi
there!".

When HTTP/2 is used Chromium does not provide the textual part of the
HTTP error code, so when an upload fails the toast can receive an empty
message and thus just show "Hi there!". Now an explicit message is
provided as a fallback to prevent that.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
apps/files/js/file-upload.js