From: single-right-quote <34298117+single-right-quote@users.noreply.github.com> Date: Wed, 1 Sep 2021 00:22:52 +0000 (+0000) Subject: Change default post privacy for new accounts to unlisted X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=2b61cdae6c036994784b0a66e091bb7b7c7bd75e;p=mastodon.git 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 --- 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?