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

add udp error handling

This commit is contained in:
Luke Pulverenti 2016-11-04 19:57:21 -04:00
parent d7846a5280
commit fab42af1a5
4 changed files with 19 additions and 7 deletions

View file

@ -127,6 +127,12 @@
select.innerHTML = html;
select.value = userSettings.get('playlisteditor-lastplaylistid') || '';
// If the value is empty set it again, in case we tried to set a lastplaylistid that is no longer valid
if (!select.value) {
select.value = '';
}
triggerChange(select);
loading.hide();