diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-07-04 13:17:13 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-07-04 13:17:13 +0200 |
commit | f19f3bc2735bd78bb3150b8507b6f8949108cece (patch) | |
tree | 8f31112084d9b76506840006348ed5d09ee7299a /lisp/mastodon-toot.el | |
parent | 6e24c36e86a86978b872ddb42bb76256b22b032e (diff) |
replace persist with multisession
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r-- | lisp/mastodon-toot.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index e934352..694d9c0 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -1964,7 +1964,9 @@ EDIT means we are editing an existing toot, not composing a new one." (mastodon-toot-mode t) ;; set visibility: (setq mastodon-toot--visibility - (or (plist-get mastodon-profile-account-settings 'privacy) + (or (plist-get + (multisession-value mastodon-profile-account-settings) + 'privacy) ;; use toot visibility setting from the server: (mastodon-profile--get-source-value 'privacy) "public")) ; fallback |