Skip to content

Commit

Permalink
Merge pull request #3343 from nextcloud/private/eszkadev/stable-27-fi…
Browse files Browse the repository at this point in the history
…x-rename
  • Loading branch information
juliusknorr authored Dec 7, 2023
2 parents ebc6c4e + 3a61180 commit a3b41bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/view/FilesAppIntegration.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ export default {
},

rename(newName) {
this.updateFileInfo(newName, Date.now())
this.updateFileInfo(decodeURIComponent(newName), Date.now())

this.fileName = newName
this.fileName = decodeURIComponent(newName)

if (this.handlers.rename && this.handlers.rename(this)) {
return
Expand Down

0 comments on commit a3b41bb

Please sign in to comment.