handle "other" jellyfin libraries (#192)

This commit is contained in:
Jason Dove
2021-05-19 20:15:16 -05:00
committed by GitHub
parent d7c080cafd
commit 34ebe9b006
2 changed files with 2 additions and 2 deletions
@@ -57,7 +57,7 @@ namespace ErsatzTV.Application.Jellyfin.Commands
return await maybeUserId.Match(
userId =>
{
_logger.LogDebug("Jellyfin admin user id is {UserId}", userId);
// _logger.LogDebug("Jellyfin admin user id is {UserId}", userId);
_memoryCache.Set($"jellyfin_admin_user_id.{parameters.JellyfinMediaSource.Id}", userId);
return Task.FromResult<Either<BaseError, Unit>>(Unit.Default);
},