From 1c34f6202e728cb6a7bd51b676a70060fe191baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Fri, 14 Jun 2019 01:27:19 +0200 Subject: [PATCH] Allow Jellyfin and Emby to coexist on the same domain --- CONTRIBUTORS.md | 1 + src/bower_components/apiclient/credentials.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1fe5f517ab..f9240c1a4c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -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 diff --git a/src/bower_components/apiclient/credentials.js b/src/bower_components/apiclient/credentials.js index a200b60124..471f2b5ef1 100644 --- a/src/bower_components/apiclient/credentials.js +++ b/src/bower_components/apiclient/credentials.js @@ -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)