Disable scope selection when replying to a direct post

This commit is contained in:
r 2020-06-18 05:02:45 +00:00
parent bd3f9ac966
commit 34c1d087af
3 changed files with 13 additions and 14 deletions

View file

@ -13,7 +13,8 @@ type PostContext struct {
}
type ReplyContext struct {
InReplyToID string
InReplyToName string
ReplyContent string
InReplyToID string
InReplyToName string
ReplyContent string
ForceVisibility bool
}