Skip to content

Commit

Permalink
chore(services/importer): better error message for failed item for plex
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Dec 19, 2024
1 parent 4291913 commit 79bcf8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/services/importer/src/plex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ pub async fn import(input: DeployUrlAndKeyImportInput) -> Result<ImportResult> {
else {
failed_items.push(ImportFailedItem {
lot: Some(lot),
identifier: item.key.clone(),
step: ImportFailStep::ItemDetailsFromSource,
identifier: format!("{} ({}) - {}", item.title, lot, item.key),
error: Some("No TMDb ID associated with this media".to_string()),
});
continue;
Expand Down

0 comments on commit 79bcf8a

Please sign in to comment.