fixed retry condition

This commit is contained in:
TotallyNot 2022-09-05 01:42:14 +02:00
parent 27d7b4e9d9
commit 17bbc07e50
2 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "torn-key-pool"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -127,8 +127,7 @@ impl KeyPoolStorage for PgKeyPoolStorage {
.await?;
Ok(true)
}
9 => Ok(false),
_ => Ok(true),
_ => Ok(false),
}
}
}