Fixed encoding problems when downloading displaying/ downloading files with special characters
This commit is contained in:
@ -24,7 +24,7 @@ class CacheableFile {
|
||||
CacheableFile.fromDavFile(WebDavFile file) {
|
||||
path = file.path;
|
||||
isDirectory = file.isDirectory;
|
||||
name = file.name;
|
||||
name = file.isDirectory ? file.name : file.path.split("/").last;
|
||||
mimeType = file.mimeType;
|
||||
size = file.size;
|
||||
eTag = file.etag;
|
||||
|
Reference in New Issue
Block a user