mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update connect error responses
This commit is contained in:
parent
088e52bc65
commit
a5d05d68fe
1 changed files with 1 additions and 4 deletions
|
@ -12,8 +12,7 @@
|
||||||
|
|
||||||
var id = 'chkGroupFolder' + i.Id;
|
var id = 'chkGroupFolder' + i.Id;
|
||||||
|
|
||||||
var isChecked = (user.Configuration.ExcludeFoldersFromGrouping != null && user.Configuration.ExcludeFoldersFromGrouping.indexOf(i.Id) == -1) ||
|
var isChecked = user.Configuration.GroupedFolders.indexOf(i.Id) != -1;
|
||||||
user.Configuration.GroupedFolders.indexOf(i.Id) != -1;
|
|
||||||
|
|
||||||
var checkedHtml = isChecked ? ' checked="checked"' : '';
|
var checkedHtml = isChecked ? ' checked="checked"' : '';
|
||||||
|
|
||||||
|
@ -166,8 +165,6 @@
|
||||||
return i.getAttribute('data-folderid');
|
return i.getAttribute('data-folderid');
|
||||||
});
|
});
|
||||||
|
|
||||||
user.Configuration.ExcludeFoldersFromGrouping = null;
|
|
||||||
|
|
||||||
user.Configuration.GroupedFolders = getCheckboxItems(".chkGroupFolder", page, true).map(function (i) {
|
user.Configuration.GroupedFolders = getCheckboxItems(".chkGroupFolder", page, true).map(function (i) {
|
||||||
|
|
||||||
return i.getAttribute('data-folderid');
|
return i.getAttribute('data-folderid');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue