fix(scheduled_tasks): int32 -> int64 in stats update

This commit is contained in:
Iris System 2024-01-27 16:05:20 +13:00 committed by GitHub
parent 283de562d3
commit 97d2f15501
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -71,7 +71,7 @@ func update_stats() {
data_stats := run_data_stats_query()
for _, key := range table_stat_keys {
val := data_stats[key+"_count"].(int32)
val := data_stats[key+"_count"].(int64)
do_stats_insert(plural(key), int(val))
}
}