MOBILE-2478 desktop: Fix files linked in HTML

main
Dani Palou 2018-07-20 10:52:23 +02:00
parent 912a1f61c5
commit 0177b60b44
1 changed files with 6 additions and 1 deletions

View File

@ -1757,7 +1757,12 @@ export class CoreFilepoolProvider {
if (this.fileProvider.isAvailable()) { if (this.fileProvider.isAvailable()) {
return Promise.resolve(this.getFilePath(siteId, fileId)).then((path) => { return Promise.resolve(this.getFilePath(siteId, fileId)).then((path) => {
return this.fileProvider.getFile(path).then((fileEntry) => { return this.fileProvider.getFile(path).then((fileEntry) => {
return fileEntry.toURL(); // This URL is usually used to launch files or put them in HTML. In desktop we need the internal URL.
if (this.appProvider.isDesktop()) {
return fileEntry.toInternalURL();
} else {
return fileEntry.toURL();
}
}); });
}); });
} }