aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2026-07-25Fix DatePlayed sorting performanceShadowghost
2026-07-25Update dependency SharpCompress to 0.50.1renovate[bot]
2026-07-25Merge pull request #17442 from Shadowghost/fix-numbers-in-episode-namesCody Robibero
Fix hyphenated numbers in episode titles parsed as multi-episodes
2026-07-25Merge pull request #17399 from Shadowghost/fix-extra-yearCody Robibero
Fix incorrect year on local trailers
2026-07-25Merge branch 'master' into fix/create_library_thumbs_on_first_scanCody Robibero
2026-07-25Always inherit from owner item and add testsShadowghost
2026-07-25Fix TmdbMissingEpisodeProviderShadowghost
2026-07-25Fix hyphenated numbers in episode titles parsed as multi-episodesShadowghost
2026-07-25Merge pull request #17437 from dkanada/ogg-formatsCody Robibero
remove ogg from video extensions since it should only be used for audio
2026-07-25Merge pull request #17395 from paoloantinori/fix/userdata-null-user-nre-masterCody Robibero
Avoid NRE when sorting by user-dependent keys without a user
2026-07-25Translated using Weblate (Faroese)krvi
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fo/
2026-07-25Translated using Weblate (Hindi)Suyash Mittal
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/hi/
2026-07-25Remove added comments (#17395 review)Paolo Antinori
2026-07-25remove ogg from video extensions since it should only be used for audiodkanada
2026-07-24Merge pull request #17423 from Shadowghost/fix-comicinfoCody Robibero
Skip ComicInfo parsing if none exists
2026-07-24Merge pull request #17234 from Eneo-org/fix/syncplay-playqueue-indexCody Robibero
Fix play queue index handling in SyncPlay
2026-07-24Merge pull request #17402 from Shadowghost/clean-forced-sort-nameCody Robibero
Apply cleaning logic on ForcedSortName
2026-07-24Merge pull request #17419 from rwebster85/mp4-audio-subtitle-namesCody Robibero
Check the "name" tag for audio/subtitle probe to fix MP4 not showing correctly - Fixes issue #17418
2026-07-24Merge pull request #17430 from jellyfin/drain-stderrCody Robibero
Drain stderr and stdout concurrently for encoder validation
2026-07-24Merge pull request #17411 from mbastian77/perf/session-manager-tolistCody Robibero
perf: avoid unnecessary list allocation in CheckForIdlePlayback
2026-07-24Don't pull MusicBrainz Annotations into overviewShadowghost
2026-07-24Drain stderr and stdout concurrently for encoder validationgnattu
Some ffmpeg build might output extremely long traces for its banner that consume all pipe capacity and hangs the process. We have to drain both streams regardless on which one we actually read.
2026-07-23Fix MusicBrainz Metadata fetchingShadowghost
2026-07-23Fix AudioDB metadata fetchingShadowghost
2026-07-23Speedup migrationShadowghost
2026-07-23Guard against blank namesShadowghost
2026-07-23Skip ComicInfo parsing if none existsShadowghost
2026-07-23Implement AudioDb artist searchShadowghost
2026-07-23Reduce correlated subqueries to improve performanceShadowghost
2026-07-23Fix series mergingShadowghost
2026-07-23Allow duplicate LinkedChildren for PlaylistsShadowghost
2026-07-23Update contributorsRichard Webster
2026-07-23Update commentRichard Webster
2026-07-23Clarify comment about MP4 track title workaroundRichard Webster
2026-07-23Avoid unnecessary list allocation in CheckForIdlePlaybackmbastian77
2026-07-22Update github/codeql-action action to v4.37.3 (#17398)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-22Check the "name" tag, not just "title"Richard Webster
2026-07-22Apply cleaning logic on ForcedSortNameShadowghost
2026-07-22Prefer null checks over HasValue everywhereShadowghost
2026-07-22Prefer null checks over HasValueShadowghost
2026-07-22fix: avoid NRE when sorting by user-dependent keys without a userPaolo Antinori
A query sorted by a user-dependent key (PlayCount, IsFavoriteOrLiked, DatePlayed, IsPlayed, IsUnplayed) but carrying no User caused a NullReferenceException inside UserDataManager.GetUserData, surfacing as "Failed to compare two elements in the array" (InvalidOperationException wrapping the NRE from the LINQ sort) and 500-ing the /Items request. Root cause: LibraryManager.GetComparer assigned comparer.User = user without a null guard, so PlayCountComparer.GetValue called UserDataManager.GetUserData(null, item), dereferencing user.Id. Two-part fix: - LibraryManager.GetComparer: when user is null and the sort key requires a user (IUserBaseItemComparer), substitute the SortName comparer so the result stays deterministic instead of 500-ing. SortName is the project's canonical tiebreaker (ItemsController injects it for album-by-artist). - UserDataManager.GetUserData: ArgumentNullException.ThrowIfNull(user) as defense in depth (matches the existing guards on the SaveUserData overloads in the same file). On master this overload was rewritten to use ResolveUserDataRow, so the NRE dereferences user.Id rather than user.InternalId as on the release branch — same bug, different line. Also fixes DateLastMediaAddedComparer being statically mis-tagged as IUserBaseItemComparer: its GetDate is static and never reads User, so it does not need one. Without this, the SortName fallback above would wrongly engage for DateLastContentAdded on anonymous queries (returning SortName order instead of date order). Re-tagged to IBaseItemComparer and dropped the unused User/UserManager/UserDataManager properties. Tests: - UserDataManagerTests.GetUserData_NullUser_ThrowsArgumentNullException: reproduces the crash (NRE -> now ArgumentNullException). Added to master's existing UserDataManagerTests. - LibraryManagerSortTests.Sort_UserDependentKey_NullUser_FallsBackToSortNameWithoutThrowing: Sort with a user-dependent key + null user no longer throws and returns items ordered by the SortName fallback (direction preserved). - LibraryManagerSortTests.Sort_DateLastContentAdded_NullUser_OrdersByDateNotSortName: guards that DateLastContentAdded still sorts by date with no user (fixture chosen so date-desc and SortName-desc disagree, so a revert is caught). Full Jellyfin.Server.Implementations.Tests suite: 642 passed, 0 failed. Fixes #17393
2026-07-21Merge pull request #17227 from altqx/masterv12.0-rc3Cody Robibero
Match VobSub MKS subtitle profiles by container
2026-07-21Merge pull request #16980 from ↵Cody Robibero
TheMelmacian/feature/library_specific_language_filter_values Improve language filters to only fetch language codes that match the requested items/libraries (follow up to #9787)
2026-07-21Merge pull request #17370 from zerafachris/fix/item-update-null-optional-fieldsCody Robibero
fix: don't throw ArgumentNullException on partial UpdateItem payloads (#17366)
2026-07-21Merge pull request #17369 from Shadowghost/harden-startup-wizardCody Robibero
Prevent unauthenticated re-run of the startup wizard on misconfiguration
2026-07-21fix: remove obsolete codeTheMelmacian
2026-07-21Fix incorrect year on local trailersShadowghost
2026-07-21Merge pull request #17160 from 854562/truncate-language-stringsCody Robibero
Truncate ISO-639-2 language display names at first delimiter
2026-07-21Translated using Weblate (Latvian)aivarsse
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/lv/
2026-07-21Fix subtitle encoding for local files (#17281)Tim Eisele
* Fix subtitle encoding * Add short-circuit * Use IsTextFormat * Update MediaBrowser.MediaEncoding/Subtitles/SubtitleEncoder.cs Co-authored-by: Bond-009 <bond.009@outlook.com> --------- Co-authored-by: Bond-009 <bond.009@outlook.com>