mirror of
https://codeberg.org/icewind/log-normalizer.git
synced 2026-06-03 22:04:05 +02:00
more steamid handling
This commit is contained in:
parent
2349327104
commit
35f62c15bd
1 changed files with 3 additions and 0 deletions
|
|
@ -66,6 +66,9 @@ async fn get_log(pool: &PgPool, id: i32) -> Result<Option<NormalizedLog>, MainEr
|
||||||
if formatted_err.starts_with("Invalid SteamID") {
|
if formatted_err.starts_with("Invalid SteamID") {
|
||||||
return Ok(None);
|
return Ok(None);
|
||||||
}
|
}
|
||||||
|
if formatted_err.starts_with("Malformed SteamID") {
|
||||||
|
return Ok(None);
|
||||||
|
}
|
||||||
if formatted_err.starts_with("invalid value: integer ") {
|
if formatted_err.starts_with("invalid value: integer ") {
|
||||||
return Ok(None);
|
return Ok(None);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue