1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update recording screens

This commit is contained in:
Luke Pulverenti 2016-09-21 13:07:18 -04:00
parent cb199a5152
commit e55726cccf
6 changed files with 17 additions and 20 deletions

View file

@ -44,10 +44,6 @@
return ApiClient.getSystemInfo().then(function (systemInfo) {
if (systemInfo.EncoderLocationType == "External") {
return;
}
return ApiClient.ajax({
url: ApiClient.getUrl('System/MediaEncoder/Path'),
type: 'POST',
@ -212,11 +208,7 @@
ApiClient.getSystemInfo().then(function (systemInfo) {
if (systemInfo.EncoderLocationType == "External") {
page.querySelector('.fldSelectEncoderPathType').classList.add('hide');
} else {
page.querySelector('.fldSelectEncoderPathType').classList.remove('hide');
}
page.querySelector('.fldSelectEncoderPathType').classList.remove('hide');
loadPage(page, config, systemInfo);
});
});