This commit is contained in:
yflory
2018-07-17 15:38:23 +02:00
parent b4c294565e
commit 6143bceabb
7 changed files with 36 additions and 18 deletions

View File

@@ -37,7 +37,7 @@ define([
var logging = function () {
console.log.apply(console, arguments);
};
var log = config.log || logging;
var log = exp.log = config.log || logging;
var logError = config.logError || logging;
var debug = exp.debug = config.debug || logging;
@@ -143,7 +143,7 @@ define([
// Data from filesData
var getTitle = exp.getTitle = function (file, type) {
if (isSharedFolder(file)) {
return '??'; // XXX
return '??';
}
var data = getFileData(file);
if (!file || !data || !(data.href || data.roHref)) {