aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/filelist.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r--apps/files/js/filelist.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 8cca43d5749..0424ba2006b 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -636,9 +636,14 @@
fileName = ''
}
+ // this is the old (terrible) way of getting the context.
+ // don't use it anywhere else. Just provide the full path
+ // of the file to the sidebar service
+ var tr = this.findFileEl(fileName)
+ var model = this.getModelForFile(tr)
+ var path = model.attributes.path + '/' + model.attributes.name
+
// open sidebar and set file
- const dir = `${this.dirInfo.path}/${this.dirInfo.name}`
- const path = `${dir}/${fileName}`
OCA.Files.Sidebar.file = path.replace('//', '/')
},