fix: type consistency
This commit is contained in:
parent
08d29f6da1
commit
6f5c8a8917
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ impl Initializer {
|
||||||
}
|
}
|
||||||
let mut notes = notes.stream(&db).await?;
|
let mut notes = notes.stream(&db).await?;
|
||||||
|
|
||||||
let mut copied: i64 = 0;
|
let mut copied: u64 = 0;
|
||||||
|
|
||||||
while let Some(note) = notes.try_next().await? {
|
while let Some(note) = notes.try_next().await? {
|
||||||
copied += 1;
|
copied += 1;
|
||||||
|
|
Loading…
Reference in a new issue