Skip to content
Snippets Groups Projects
Commit b6f373f0 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

webdav: rethrow unhandled errors during upload

Upload was broken without any error with webdav-client 4.x. This was
hiding the error.
parent 1c623921
No related branches found
No related tags found
No related merge requests found
......@@ -686,6 +686,8 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
} else {
this.replaceModalDialog(file, directory);
}
} else {
throw error;
}
});
} else {
......@@ -771,6 +773,8 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
} else {
this.replaceModalDialog(file, directory);
}
} else {
throw error;
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment