Inverted if statement

This commit is contained in:
BaronGreenback
2020-09-17 18:20:27 +01:00
committed by GitHub
parent 81db323f88
commit 9fc1a8b619

View File

@@ -169,7 +169,7 @@ namespace Jellyfin.Api.Helpers
string? containerInternal = Path.GetExtension(state.RequestedUrl);
if (string.IsNullOrEmpty(streamingRequest.Container))
if (!string.IsNullOrEmpty(streamingRequest.Container))
{
containerInternal = streamingRequest.Container;
}