mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-13 01:00:12 +00:00
fix(scheduled_tasks): int32 -> int64 in stats update
This commit is contained in:
parent
283de562d3
commit
97d2f15501
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ func update_stats() {
|
||||||
|
|
||||||
data_stats := run_data_stats_query()
|
data_stats := run_data_stats_query()
|
||||||
for _, key := range table_stat_keys {
|
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))
|
do_stats_insert(plural(key), int(val))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue