2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/10486.bugfix b/changelog.d/10486.bugfix
new file mode 100644
index 0000000000..7c65c16e96
--- /dev/null
+++ b/changelog.d/10486.bugfix
@@ -0,0 +1 @@
+Fix reporting old R30 stats as R30v2 stats.
diff --git a/synapse/app/phone_stats_home.py b/synapse/app/phone_stats_home.py
index 96defac1d2..86ad7337a9 100644
--- a/synapse/app/phone_stats_home.py
+++ b/synapse/app/phone_stats_home.py
@@ -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
|