mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 00:05:26 +03:00
open up live tv method
This commit is contained in:
@@ -65,7 +65,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer.Security
|
||||
|
||||
if (!allowLocal || !req.IsLocal)
|
||||
{
|
||||
if (!_config.Configuration.InsecureApps2.Contains(auth.Client ?? string.Empty, StringComparer.OrdinalIgnoreCase))
|
||||
if (!string.IsNullOrWhiteSpace(auth.Token) ||
|
||||
!_config.Configuration.InsecureApps2.Contains(auth.Client ?? string.Empty, StringComparer.OrdinalIgnoreCase))
|
||||
{
|
||||
SessionManager.ValidateSecurityToken(auth.Token);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user