Fix folders path (#97)
parent
4829ce9da1
commit
2503b21e48
|
@ -459,8 +459,9 @@ export default class Timeline extends Mixins(GlobalMixin, UserConfig) {
|
||||||
|
|
||||||
// Folder
|
// Folder
|
||||||
if (this.$route.name === 'folders') {
|
if (this.$route.name === 'folders') {
|
||||||
let path: any = this.config_foldersPath + (this.$route.params.path || '/');
|
let path: any = this.$route.params.path || '/';
|
||||||
path = typeof path === 'string' ? path : path.join('/');
|
path = typeof path === 'string' ? path : path.join('/');
|
||||||
|
path = this.config_foldersPath + '/' + path;
|
||||||
query.set('folder', path);
|
query.set('folder', path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue