diff options
author | r <r@freesoftwareextremist.com> | 2020-06-18 05:02:45 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-06-18 05:04:18 +0000 |
commit | 34c1d087afd26b2ca8426333c02c943d13f3fdb0 (patch) | |
tree | e05a72d81cdd1ad8034eccf3c2cc73f93c17f37d /service | |
parent | bd3f9ac9668d1363158b13efab41e734eaae2aed (diff) | |
download | bloat-34c1d087afd26b2ca8426333c02c943d13f3fdb0.tar.gz bloat-34c1d087afd26b2ca8426333c02c943d13f3fdb0.zip |
Disable scope selection when replying to a direct post
Diffstat (limited to 'service')
-rw-r--r-- | service/service.go | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/service/service.go b/service/service.go index 2c4f0b0..2cc8e5a 100644 --- a/service/service.go +++ b/service/service.go @@ -313,12 +313,9 @@ func (svc *service) ServeThreadPage(c *model.Client, id string, reply bool) (err } } - if c.Session.Settings.CopyScope { - s, err := c.GetStatus(ctx, id) - if err != nil { - return err - } - visibility = s.Visibility + isDirect := status.Visibility == "direct" + if isDirect || c.Session.Settings.CopyScope { + visibility = status.Visibility } else { visibility = c.Session.Settings.DefaultVisibility } @@ -327,9 +324,10 @@ func (svc *service) ServeThreadPage(c *model.Client, id string, reply bool) (err DefaultVisibility: visibility, Formats: svc.postFormats, ReplyContext: &model.ReplyContext{ - InReplyToID: id, - InReplyToName: status.Account.Acct, - ReplyContent: content, + InReplyToID: id, + InReplyToName: status.Account.Acct, + ReplyContent: content, + ForceVisibility: isDirect, }, DarkMode: c.Session.Settings.DarkMode, } @@ -351,7 +349,7 @@ func (svc *service) ServeThreadPage(c *model.Client, id string, reply bool) (err idNumbers[statuses[i].ID] = i + 1 statuses[i].IDReplies = replies - addToReplyMap(replies, statuses[i].InReplyToID, statuses[i].ID, i + 1) + addToReplyMap(replies, statuses[i].InReplyToID, statuses[i].ID, i+1) } commonData := svc.getCommonData(c, "post by "+status.Account.DisplayName) |