Adapt to new libimagstore::iter::Entries API
Use Entries::into_storeid_iter() for transforming iterator into right type. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
ebf3f309a6
commit
d2c031920a
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ impl<'a> NoteStore<'a> for Store {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn all_notes(&'a self) -> Result<NoteIterator> {
|
fn all_notes(&'a self) -> Result<NoteIterator> {
|
||||||
self.entries().map(|it| it.without_store()).map(NoteIterator::new)
|
self.entries().map(|it| it.into_storeid_iter()).map(NoteIterator::new)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue