jellyfin-web/dashboard-ui/thirdparty/cordova/android/localassetmanager.js
2015-06-03 11:26:39 -04:00

17 lines
338 B
JavaScript

(function () {
function getLocalMediaSource(serverId, itemId) {
var json = ApiClientBridge.getLocalMediaSource(serverId, itemId);
if (json) {
return JSON.parse(json);
}
return null;
}
window.LocalAssetManager = {
getLocalMediaSource: getLocalMediaSource
};
})();