mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #5117 from jellyfin/fix-framerate-locale
Make FRAME-RATE field culture invariant (cherry picked from commit 63be32630254508bdc021a726bb6f892a4b2c930) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
5dbd6f076c
commit
20e985a0d1
@ -427,7 +427,7 @@ namespace Jellyfin.Api.Helpers
|
|||||||
if (framerate.HasValue)
|
if (framerate.HasValue)
|
||||||
{
|
{
|
||||||
builder.Append(",FRAME-RATE=")
|
builder.Append(",FRAME-RATE=")
|
||||||
.Append(framerate.Value);
|
.Append(framerate.Value.ToString(CultureInfo.InvariantCulture));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user