diff --git a/core/migrations/0049_user_whitelisted_users.py b/core/migrations/0049_user_whitelisted_users.py
index d0a269c9..6970caea 100644
--- a/core/migrations/0049_user_whitelisted_users.py
+++ b/core/migrations/0049_user_whitelisted_users.py
@@ -27,7 +27,10 @@ class Migration(migrations.Migration):
name="show_my_stats",
field=models.BooleanField(
default=False,
- help_text="Allow subscribers to access your AE account stats.",
+ help_text=(
+ "Allow subscribers (or whitelisted users "
+ "if your profile is hidden) to access your AE account stats."
+ ),
verbose_name="show your stats to others",
),
),
diff --git a/core/models.py b/core/models.py
index 287e2f6c..0f0ef10e 100644
--- a/core/models.py
+++ b/core/models.py
@@ -781,7 +781,10 @@ class Preferences(models.Model):
receive_weekmail = models.BooleanField(_("receive the Weekmail"), default=False)
show_my_stats = models.BooleanField(
_("show your stats to others"),
- help_text=_("Allow subscribers to access your AE account stats."),
+ help_text=_(
+ "Allow subscribers (or whitelisted users "
+ "if your profile is hidden) to access your AE account stats."
+ ),
default=False,
)
notify_on_click = models.BooleanField(
diff --git a/core/templates/core/fragment/user_visibility.jinja b/core/templates/core/fragment/user_visibility.jinja
index f89720d6..ee78e907 100644
--- a/core/templates/core/fragment/user_visibility.jinja
+++ b/core/templates/core/fragment/user_visibility.jinja
@@ -21,7 +21,7 @@
-