You've already forked filebrowser
mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-11-26 14:25:26 +08:00
Fix UTF8 characters encoding on file rename and display #99
This commit is contained in:
@@ -85,7 +85,7 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
base64: function (name) {
|
||||
return window.btoa(name)
|
||||
return window.btoa(unescape(encodeURIComponent(name)))
|
||||
},
|
||||
dragEnter: function (event) {
|
||||
let items = document.getElementsByClassName('item')
|
||||
|
||||
Reference in New Issue
Block a user