From 2b61cdae6c036994784b0a66e091bb7b7c7bd75e Mon Sep 17 00:00:00 2001 From: single-right-quote <34298117+single-right-quote@users.noreply.github.com> Date: Wed, 1 Sep 2021 00:22:52 +0000 Subject: [PATCH] Change default post privacy for new accounts to unlisted allowing randos to show up in your menchies should be an informed choice, especially for new users to the fediverse kibi pointed this out so i guess i'm doing a guar gum now lol --- yr cat --- app/models/user.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/user.rb b/app/models/user.rb index a1a278004..c86a0377e 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -246,7 +246,7 @@ class User < ApplicationRecord end def setting_default_privacy - settings.default_privacy || (account.locked? ? 'private' : 'public') + settings.default_privacy || (account.locked? ? 'private' : 'unlisted') end def allows_digest_emails? -- 2.47.3