Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop showing missing movies from show libraries #2429

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ Fixed an issue where custom repositories would not work correctly if the URL did
Kometa will now check for `.yaml` extension in filenames if `.yml` is not found and vice-versa
Kometa will no longer automatically sync playlists to all users if you do not specify who you want to sync them to. Only the server admin will receive playlists unless otherwise specified using `sync_to_users` or `playlist_sync_to_users`
Fixes #2385 `tmdb_person` would pass an integer if the name started with an integer (i.e. `50 Cent` would pass `50` which resolved to `Catherine Deneuve`)
Fixes an issue where `show_missing` would display missing movies against show libraries (closes #2351)
2 changes: 1 addition & 1 deletion modules/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -3032,7 +3032,7 @@ def display_filters(self):
def run_missing(self):
added_to_radarr = 0
added_to_sonarr = 0
if len(self.missing_movies) > 0:
if len(self.missing_movies) > 0 and self.library.is_movie:
if self.details["show_missing"] is True:
logger.info("")
logger.separator(f"Missing Movies from Library: {self.library.name}", space=False, border=False)
Expand Down
Loading