Only show update finished message if update run

This commit is contained in:
The Magician 2024-06-11 17:03:42 +01:00
parent ed4c01ce49
commit 80eb8696ca
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ func RunUpdateCheck(db *sql.DB) {
err = logic.UpdateCards(db, bulkData)
logic.Check(err)
}
fmt.Println("Update finished.")
fmt.Println("Update finished.")
}
}