mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
fix search menus
This commit is contained in:
parent
5516424502
commit
0b47adfaee
@ -3056,7 +3056,13 @@
|
||||
|
||||
var url = self.getUrl("Search/Hints", options);
|
||||
|
||||
return self.getJSON(url);
|
||||
return self.getJSON(url).then(function (result) {
|
||||
var serverId = self.serverId();
|
||||
result.SearchHints.forEach(function (i) {
|
||||
i.ServerId = serverId;
|
||||
});
|
||||
return result;
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user