Skip to content
Snippets Groups Projects
Unverified Commit 10dcfae4 authored by reivilibre's avatar reivilibre Committed by GitHub
Browse files

Fix typo that causes R30v2 to actually be old R30 (#10486)

parent 74d09a43
No related branches found
No related tags found
No related merge requests found
Fix reporting old R30 stats as R30v2 stats.
......@@ -109,7 +109,7 @@ async def phone_stats_home(hs, stats, stats_process=_stats_process):
for name, count in r30_results.items():
stats["r30_users_" + name] = count
r30v2_results = await store.count_r30_users()
r30v2_results = await store.count_r30v2_users()
for name, count in r30v2_results.items():
stats["r30v2_users_" + name] = count
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment