mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 21:37:59 +03:00
[PR #16106] [CLOSED] Fix TMDB image URLs missing size parameter #14524
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/jellyfin/jellyfin/pull/16106
Author: @saltpi
Created: 1/25/2026
Status: ❌ Closed
Base:
release-10.11.z← Head:master📝 Commits (10+)
28b0657Backport pull request #15217 from jellyfin/release-10.11.z21f65e2Backport pull request #15220 from jellyfin/release-10.11.z7d778d7Translated using Weblate (Alemannic)f92eca3Translated using Weblate (Mongolian)f21fe9fTranslated using Weblate (Chinese (Traditional Han script, Hong Kong))573ce9cTranslated using Weblate (Mongolian)83d0dbdUpdate github/codeql-action action to v4.31.223929a3Translated using Weblate (Chinese (Traditional Han script, Hong Kong))ffe82beTranslated using Weblate (Chinese (Traditional Han script, Hong Kong))63f06aaUpdate dependency Serilog.Sinks.Console to 6.1.1📊 Changes
269 files changed (+3734 additions, -2206 deletions)
View changed files
📝
.config/dotnet-tools.json(+1 -1)📝
.editorconfig(+7 -0)📝
.github/CODEOWNERS(+11 -4)📝
.github/ISSUE_TEMPLATE/issue report.yml(+13 -5)📝
.github/workflows/ci-codeql-analysis.yml(+9 -6)📝
.github/workflows/ci-compat.yml(+11 -11)📝
.github/workflows/ci-openapi.yml(+33 -74)📝
.github/workflows/ci-tests.yml(+4 -4)📝
.github/workflows/commands.yml(+6 -3)📝
.github/workflows/issue-stale.yml(+1 -1)📝
.github/workflows/issue-template-check.yml(+5 -2)📝
.github/workflows/project-automation.yml(+1 -0)📝
.github/workflows/pull-request-stale.yaml(+1 -1)📝
.github/workflows/release-bump-version.yaml(+2 -2)📝
.vscode/launch.json(+3 -3)📝
CONTRIBUTORS.md(+6 -0)📝
Directory.Packages.props(+37 -46)➕
Emby.Naming/Book/BookFileNameParser.cs(+75 -0)➕
Emby.Naming/Book/BookFileNameParserResult.cs(+41 -0)📝
Emby.Naming/Emby.Naming.csproj(+2 -2)...and 80 more files
📄 Description
Changes
When TMDB plugin configuration size values (PosterSize, BackdropSize, etc.)
are null or empty, the GetUrl() method now defaults to "original" instead of
passing null/empty to the TMDb client. This prevents malformed URLs like
"https://image.tmdb.org/t/p//filename.jpg" and ensures proper format
"https://image.tmdb.org/t/p/original/filename.jpg".
Fixes remote image search failing to display TMDB images in Edit Images modal.
Issues
Fix TMDB image URLs missing size parameter #16102
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.