diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2025-01-11 17:35:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-11 09:35:44 -0700 |
| commit | 3b8e614819b51c2acf73f95874dfe881f5146404 (patch) | |
| tree | 153059e760287198f42e1720883b5c120014f237 /Jellyfin.Server.Implementations | |
| parent | 17bbe4a2cd7f7c7cdcd4a2ce06e9e076c616d7ae (diff) | |
Prefer ApiKey over api_key in generated URL's (#13342)
Diffstat (limited to 'Jellyfin.Server.Implementations')
| -rw-r--r-- | Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs b/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs index af57bc134..49128562c 100644 --- a/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs +++ b/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs @@ -536,7 +536,7 @@ public class TrickplayManager : ITrickplayManager if (trickplayInfo.ThumbnailCount > 0) { - const string urlFormat = "{0}.jpg?MediaSourceId={1}&api_key={2}"; + const string urlFormat = "{0}.jpg?MediaSourceId={1}&ApiKey={2}"; const string decimalFormat = "{0:0.###}"; var resolution = $"{trickplayInfo.Width}x{trickplayInfo.Height}"; |
