diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-12-12 17:53:45 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-12-12 17:53:45 +0100 |
| commit | 40fae1e0b0ee8728a71e4d0ce2afc5f4b1ed511a (patch) | |
| tree | ea0a2d13686751587d6b110e773e316600fe2ee1 /import/src/plugins/trakt.rs | |
| parent | 8ae93cf38e0cb73c11035ee888d4bf69fe4efac3 (diff) | |
| download | jellything-40fae1e0b0ee8728a71e4d0ce2afc5f4b1ed511a.tar jellything-40fae1e0b0ee8728a71e4d0ce2afc5f4b1ed511a.tar.bz2 jellything-40fae1e0b0ee8728a71e4d0ce2afc5f4b1ed511a.tar.zst | |
infallible db node update
Diffstat (limited to 'import/src/plugins/trakt.rs')
| -rw-r--r-- | import/src/plugins/trakt.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/import/src/plugins/trakt.rs b/import/src/plugins/trakt.rs index 8dc5bdc..c4b3bb2 100644 --- a/import/src/plugins/trakt.rs +++ b/import/src/plugins/trakt.rs @@ -403,7 +403,6 @@ impl ImportPlugin for Trakt { }; ct.db.update_node_init(node, |node| { node.identifiers.insert(ty, id.to_owned()); - Ok(()) })?; } Ok(()) @@ -485,7 +484,6 @@ impl Trakt { if let Some(rating) = &details.rating { node.ratings.insert(RatingType::Trakt, *rating); } - Ok(()) })?; Ok(()) } @@ -517,7 +515,6 @@ impl Trakt { if let Some(r) = episode.rating { node.ratings.insert(RatingType::Trakt, r); } - Ok(()) })?; } } |