Skip to content
Snippets Groups Projects
Commit 85cb9bc5 authored by gnaegi's avatar gnaegi
Browse files

OO-883 set ms office documents to downloadable also in folder component

parent 60c98fb9
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,12 @@ public class CmdServeResource implements FolderCommand {
mr = vmr;
} else {
// binary data: not .html, not .htm, not .js -> treated as is
mr = new VFSMediaResource(vfsfile);
VFSMediaResource vmr = new VFSMediaResource(vfsfile);
// This is to prevent the login prompt in Excel, Word and PowerPoint
if (path.endsWith(".xlsx") || path.endsWith(".pptx") || path.endsWith(".docx")) {
vmr.setDownloadable(true);
}
mr = vmr;
}
}
......
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