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

Merge pull request #1308 from MediaBrowser/master

update connect login
This commit is contained in:
Luke 2015-12-14 12:15:22 -05:00
commit 23858274c1

View file

@ -191,7 +191,7 @@
} }
function supportInAppSignup() { function supportInAppSignup() {
return true; return AppInfo.isNativeApp;
return AppInfo.isNativeApp || window.location.href.toLowerCase().indexOf('https') == 0; return AppInfo.isNativeApp || window.location.href.toLowerCase().indexOf('https') == 0;
} }