Fixes a bug where privacy settings in the composer are sproadically not remembered.

main
Vavassor 7 years ago
parent fbd4150001
commit 49ef88751e
  1. 4
      app/src/main/java/com/keylesspalace/tusky/ComposeActivity.java

@ -607,8 +607,8 @@ public class ComposeActivity extends BaseActivity {
}
@Override
protected void onPause() {
super.onPause();
protected void onStop() {
super.onStop();
if (inReplyToId != null) {
/* Don't save the visibility setting for replies because they adopt the visibility of
* the status they reply to and that behaviour needs to be kept separate. */

Loading…
Cancel
Save