Enabled send chips in non Play store releases

This commit is contained in:
M66B
2022-02-23 12:40:55 +01:00
parent a7f1e88d53
commit 651c079b00
3 changed files with 4 additions and 4 deletions

View File

@@ -330,7 +330,7 @@ public class EditTextMultiAutoComplete extends AppCompatMultiAutoCompleteTextVie
try {
final Context context = getContext();
final Editable edit = getText();
final boolean send_chips = prefs.getBoolean("send_chips", false);
final boolean send_chips = prefs.getBoolean("send_chips", !BuildConfig.PLAY_STORE_RELEASE);
final boolean focus = hasFocus();
final int selStart = getSelectionStart();