diff options
Diffstat (limited to 'import/src/plugins/acoustid.rs')
| -rw-r--r-- | import/src/plugins/acoustid.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/import/src/plugins/acoustid.rs b/import/src/plugins/acoustid.rs index 55c2123..b93533a 100644 --- a/import/src/plugins/acoustid.rs +++ b/import/src/plugins/acoustid.rs @@ -9,7 +9,7 @@ use crate::{ }; use anyhow::{Context, Result}; use jellycache::{HashKey, cache_memory}; -use jellycommon::{IdentifierType, NodeID}; +use jellydb::table::RowNum; use jellyremuxer::matroska::Segment; use log::info; use reqwest::{ @@ -166,7 +166,7 @@ impl ImportPlugin for AcoustID { ..Default::default() } } - fn media(&self, ct: &ImportContext, node: NodeID, path: &Path, _seg: &Segment) -> Result<()> { + fn media(&self, ct: &ImportContext, node: RowNum, path: &Path, _seg: &Segment) -> Result<()> { if !ct.iflags.use_acoustid { return Ok(()); } |