added warning when quoting non-public toots for mastodon
This commit is contained in:
parent
a5303a2e01
commit
5434e21cdb
|
@ -203,7 +203,7 @@ class ComposeActivity : BaseActivity(), OnMenuItemClickListener, OnClickListener
|
||||||
get() {
|
get() {
|
||||||
val status = inReplyToStatus
|
val status = inReplyToStatus
|
||||||
if (!isQuote || status == null) return false
|
if (!isQuote || status == null) return false
|
||||||
return status.user_is_protected && status.account_key != status.user_key
|
return !status.can_retweet && status.account_key != status.user_key
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
|
Loading…
Reference in New Issue