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

update naming project

This commit is contained in:
Luke Pulverenti 2015-12-06 13:11:03 -05:00
parent 69c951cb3f
commit 5f6d68e3b5
3 changed files with 5 additions and 4 deletions

View file

@ -67,7 +67,8 @@
type: "POST",
url: ApiClient.getUrl("Items/RemoteSearch/" + currentItem.Type),
data: JSON.stringify(lookupInfo),
contentType: "application/json"
contentType: "application/json",
dataType: 'json'
}).then(function (results) {
@ -88,7 +89,6 @@
for (var i = 0, length = results.length; i < length; i++) {
var result = results[i];
html += getSearchResultHtml(result, i);
}