Skip to content
Snippets Groups Projects
Commit 53b116e0 authored by Markus Escher's avatar Markus Escher
Browse files

fix Document DownloadAction

parent 22c4b47e
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ DocumentUtil.downloadSelectedDocuments = function() {
if(vars.exists("$sys.selectionRows") && vars.getString("$sys.selectionRows")) {
var rows = vars.get("$sys.selectionRows");
var uids = JSON.parse(vars.get("$sys.selection"));
var uids = vars.get("$sys.selection");
var binaryContents = db.getBinaryContents(uids, alias);
// check if multiplie Files are selected.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment