Merge pull request #5117 from jellyfin/fix-framerate-locale

Make FRAME-RATE field culture invariant
This commit is contained in:
Claus Vium 2021-01-28 15:35:23 +01:00 committed by GitHub
commit 63be326302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ namespace Jellyfin.Api.Helpers
if (framerate.HasValue)
{
builder.Append(",FRAME-RATE=")
.Append(framerate.Value);
.Append(framerate.Value.ToString(CultureInfo.InvariantCulture));
}
}