Fix invalid merge conflict fix

This commit is contained in:
Joshua M. Boniface
2026-03-31 19:46:47 -04:00
parent 52aebfb7d3
commit ff365dae34

View File

@@ -485,7 +485,7 @@ public static class StreamingHelpers
request.StartTimeTicks = long.Parse(val, CultureInfo.InvariantCulture);
break;
case 15:
if (videoRequest is not null && EncodingHelper.LevelValidationRegex().IsMatch(val))
if (videoRequest is not null && EncodingHelper.LevelValidationRegexStr().IsMatch(val))
{
videoRequest.Level = val;
}