jellyfin-web/dashboard-ui/thirdparty/filesystem.js
2015-06-10 00:01:14 -04:00

13 lines
232 B
JavaScript

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