Widens proguard to just keep everything under org.bouncycastle when minifying. Also fixes a bug where the composer's content warning is hidden after changing orientation.
This commit is contained in:
parent
408d38102d
commit
857f39b480
2 changed files with 6 additions and 4 deletions
|
@ -310,9 +310,11 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm
|
|||
}
|
||||
} else {
|
||||
String contentWarning = intent.getStringExtra("saved_toot_content_warning");
|
||||
startingHideText = !TextUtils.isEmpty(contentWarning);
|
||||
if (startingHideText) {
|
||||
startingContentWarning = contentWarning;
|
||||
if (contentWarning != null) {
|
||||
startingHideText = !contentWarning.isEmpty();
|
||||
if (startingHideText) {
|
||||
startingContentWarning = contentWarning;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue