mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
(function () {
|
|
|
|
window.FileSystemBridge = {
|
|
|
|
fileExists: function (path) {
|
|
return false;
|
|
},
|
|
|
|
translateFilePath: function (path) {
|
|
return 'file://' + path;
|
|
}
|
|
};
|
|
})(); |