pinakes-core: fix subtitle i32 overflow in postgres
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I3b43f97c96905953fd58f051667c59096a6a6964
This commit is contained in:
parent
60452dcb5a
commit
6d68a83003
4 changed files with 33 additions and 8 deletions
|
|
@ -271,7 +271,9 @@ pub async fn scan_directory_with_options(
|
|||
if let Some(p) = progress {
|
||||
p.record_error(msg.clone());
|
||||
}
|
||||
errors.push(msg);
|
||||
if errors.len() < MAX_STORED_ERRORS {
|
||||
errors.push(msg);
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue