Merge pull request #361 from oddstr13/pr-emby-auth-coexist-1

Allow Jellyfin and Emby to coexist on the same domain
This commit is contained in:
Joshua M. Boniface 2019-06-16 01:10:54 -04:00 committed by GitHub
commit 6a0672a996
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -21,6 +21,7 @@
- [RazeLighter777](https://github.com/RazeLighter777)
- [LogicalPhallacy](https://github.com/LogicalPhallacy)
- [thornbill](https://github.com/thornbill)
- [Oddstr13](https://github.com/oddstr13)
# Emby Contributors

View file

@ -13,7 +13,7 @@ define(["events", "appStorage"], function(events, appStorage) {
}
function Credentials(key) {
this.key = key || "servercredentials3"
this.key = key || "jellyfin_credentials"
}
return Credentials.prototype.clear = function() {
this._credentials = null, appStorage.removeItem(this.key)