mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
handle users logging in locally with Emby Connect
This commit is contained in:
parent
ba2ccfb17a
commit
b614bbcf09
3 changed files with 8 additions and 8 deletions
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
|
@ -274,8 +274,7 @@
|
|||
playFromHere: true,
|
||||
action: 'playallfromhere',
|
||||
smallIcon: true,
|
||||
artist: true,
|
||||
addToListButton: true
|
||||
artist: true
|
||||
});
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue