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

Merge pull request #5717 from grafixeyehero/Add-filter-status-Indicator-legacy

Add filter status indicator
This commit is contained in:
Bill Thornton 2024-08-20 16:45:52 -04:00 committed by GitHub
commit 31fbc08269
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 123 additions and 19 deletions

View file

@ -523,16 +523,7 @@ export class UserSettings {
* @param {Object} query - Query.
*/
saveQuerySettings(key, query) {
const values = {};
if (query.SortBy) {
values.SortBy = query.SortBy;
}
if (query.SortOrder) {
values.SortOrder = query.SortOrder;
}
return this.set(key, JSON.stringify(values));
return this.set(key, JSON.stringify(query));
}
/**