Compare commits

...

2 Commits

Author SHA1 Message Date
B. Petersen 0a259d2277 bump version 2018-10-19 23:06:47 +02:00
B. Petersen 9f6a7cbf00 make create groups work again, tackles #92 2018-10-19 23:03:06 +02:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -255,8 +255,8 @@ android {
}
defaultConfig {
versionCode 395
versionName "0.0.5"
versionCode 396
versionName "0.0.6"
applicationId "chat.delta.androidii"
minSdkVersion 14
@@ -206,9 +206,9 @@ public class GroupCreateActivity extends PassphraseRequiredActionBarActivity
}
private void initializeExistingGroup() {
editGroup = true;
final Address groupAddress = getIntent().getParcelableExtra(GROUP_ADDRESS_EXTRA);
if (groupAddress != null) {
editGroup = true;
int chatId = groupAddress.getDcChatId();
new FillExistingGroupInfoAsyncTask(this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, chatId);
}