diff --git a/dashboard-ui/bower_components/emby-apiclient/apiclient.js b/dashboard-ui/bower_components/emby-apiclient/apiclient.js index 7ddcb74b80..ccfc1039e1 100644 --- a/dashboard-ui/bower_components/emby-apiclient/apiclient.js +++ b/dashboard-ui/bower_components/emby-apiclient/apiclient.js @@ -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; + }); }; /**