From: Vincent Petry Date: Wed, 28 May 2014 14:34:00 +0000 (+0200) Subject: Fix fileList fallback in OC.Share for outside files app X-Git-Tag: v7.0.0alpha2~180^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=66afd1aa3925f31f347edfc5dae7adf7603ba5c6;p=nextcloud-server.git Fix fileList fallback in OC.Share for outside files app OC.Share can be used in non-files apps, so the fileList callback needs to support that as well. --- diff --git a/core/js/share.js b/core/js/share.js index 894f0d488f4..90f6c7fdc7c 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -37,9 +37,16 @@ OC.Share={ */ updateIcons:function(itemType, fileList){ var item; - fileList = fileList || OCA.Files.App.fileList; - var $fileList = fileList.$fileList; - var currentDir = fileList.getCurrentDirectory(); + var $fileList; + var currentDir; + if (!fileList && OCA.Files) { + fileList = OCA.Files.App.fileList; + } + // fileList is usually only defined in the files app + if (fileList) { + $fileList = fileList.$fileList; + currentDir = fileList.getCurrentDirectory(); + } for (item in OC.Share.statuses){ var image; var data = OC.Share.statuses[item];