Skip to content

Commit

Permalink
Fix console error when pasting with empty clipboard (#7214)
Browse files Browse the repository at this point in the history
init var as empty array to prevent console errors
  • Loading branch information
Jan authored Jul 5, 2022
1 parent a4fcf3c commit ae069a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Prevent error when pasting with empty clipboard

We've fixed a bug where an error was thrown when pasting with empty clipboard

https://github.com/owncloud/web/pull/7214
https://github.com/owncloud/web/issues/7146
2 changes: 1 addition & 1 deletion packages/web-app-files/src/store/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
upsertResource
}
) {
let movedResources
let movedResources = []
if (context.state.clipboardAction === ClipboardActions.Cut) {
movedResources = await move(
context.state.clipboardResources,
Expand Down

0 comments on commit ae069a9

Please sign in to comment.