diff --git a/dashboard-ui/bower_components/emby-apiclient/.bower.json b/dashboard-ui/bower_components/emby-apiclient/.bower.json index b0a8c644a..202772b92 100644 --- a/dashboard-ui/bower_components/emby-apiclient/.bower.json +++ b/dashboard-ui/bower_components/emby-apiclient/.bower.json @@ -16,12 +16,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.1.117", - "_release": "1.1.117", + "version": "1.1.118", + "_release": "1.1.118", "_resolution": { "type": "version", - "tag": "1.1.117", - "commit": "96f1537d9200dd5450fc75665edbc3563be4bef7" + "tag": "1.1.118", + "commit": "e43c750bd0a2cdb109e4b12ae561960118381e51" }, "_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git", "_target": "^1.1.51", diff --git a/dashboard-ui/bower_components/emby-apiclient/apiclient.js b/dashboard-ui/bower_components/emby-apiclient/apiclient.js index 829b3332c..39e15b0da 100644 --- a/dashboard-ui/bower_components/emby-apiclient/apiclient.js +++ b/dashboard-ui/bower_components/emby-apiclient/apiclient.js @@ -2618,9 +2618,10 @@ var url = self.getUrl("Users/authenticatebyname"); - require(["cryptojs-sha1"], function () { + require(["cryptojs-sha1", "cryptojs-md5"], function () { var postData = { - password: CryptoJS.SHA1(password || "").toString(), + Password: CryptoJS.SHA1(password || "").toString(), + PasswordMd5: CryptoJS.MD5(password || "").toString(), Username: name }; diff --git a/dashboard-ui/scripts/itembynamedetailpage.js b/dashboard-ui/scripts/itembynamedetailpage.js index c765a6079..c4f8726e3 100644 --- a/dashboard-ui/scripts/itembynamedetailpage.js +++ b/dashboard-ui/scripts/itembynamedetailpage.js @@ -274,8 +274,7 @@ playFromHere: true, action: 'playallfromhere', smallIcon: true, - artist: true, - addToListButton: true + artist: true }); break;