mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
|
(function () {
|
|||
|
|
|||
|
function getLocalMediaSource(serverId, itemId) {
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
window.LocalAssetManager = {
|
|||
|
getLocalMediaSource: getLocalMediaSource
|
|||
|
};
|
|||
|
|
|||
|
})();
|