Public discord webhook (#492)

This commit is contained in:
Geometrically
2022-12-06 19:51:03 -07:00
committed by GitHub
parent e96d23cc3f
commit e809f77461
16 changed files with 1391 additions and 905 deletions

View File

@@ -151,7 +151,7 @@ fn game_version_supported(
all_game_versions
.iter()
.find(|y| y.version == x.0)
.map(|x| x.date > date)
.map(|x| x.created > date)
.unwrap_or(false)
})
}
@@ -160,7 +160,7 @@ fn game_version_supported(
all_game_versions
.iter()
.find(|y| y.version == x.0)
.map(|x| x.date > before && x.date < after)
.map(|x| x.created > before && x.created < after)
.unwrap_or(false)
})
}