Handle symlinks in filemanager

This commit is contained in:
Johannes Zellner
2020-07-18 18:21:23 +02:00
parent 4ef963fe54
commit 6661f21e2f
2 changed files with 8 additions and 5 deletions

View File

@@ -217,7 +217,9 @@ app.controller('FileManagerController', ['$scope', '$timeout', 'Client', functio
$scope.changeDirectory(filePath);
} else if (entry.isFile) {
$scope.textEditor.show(entry);
} else {}
} else {
}
};
$scope.goDirectoryUp = function () {