fix(dump): Fix the import of dump from the v24 and before

This commit is contained in:
Irevoire 2022-01-13 12:23:02 +01:00
parent 010dcc3e80
commit 343bce6a29
No known key found for this signature in database
GPG Key ID: 7A6A970C96104F1B
1 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,10 @@ impl AuthController {
let keys_file_path = src.as_ref().join(KEYS_PATH);
if !keys_file_path.exists() {
return Ok(());
}
let mut reader = BufReader::new(File::open(&keys_file_path)?).lines();
while let Some(key) = reader.next().transpose()? {
let key = serde_json::from_str(&key)?;