Fix no update condition

This commit is contained in:
The Magician 2024-12-17 14:59:15 +00:00
parent 94b8dfb6b9
commit de1b7e15b2
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ func UpdateScryfallData(db *sql.DB) {
needsUpdate, err := checkScryfallUpdates(db, bulkData)
logic.Check(err)
if needsUpdate {
if !needsUpdate {
scryfallLog("No update required.")
return
}