Files
jellyfin-web/dashboard-ui/thirdparty/filesystem.js
T
Luke Pulverenti f64e0c7c53 auto-organize fix
2015-06-08 17:32:20 -04:00

13 lines
226 B
JavaScript

(function () {
window.FileSystem = {
fileExists: function (path) {
return false;
},
translateFilePath: function (path) {
return 'file://' + path;
}
};
})();