Version 1.0.3

This commit is contained in:
Alessandro Ferro 2022-10-29 14:41:11 +02:00
parent 85afd7668c
commit d958a511b6
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 3,
"versionName": "1.0.2",
"versionCode": 4,
"versionName": "1.0.3",
"outputFile": "app-release.apk"
}
],

View File

@ -134,7 +134,7 @@ public class WhitelistContactsActivity extends AppCompatActivity {
return;
}
String number = c.getString(phoneIndex);
String contactName = (phoneIndex > 0)? c.getString(contactNameIndex) : "unknown"; // planned to show contact's name as well
String contactName = (contactNameIndex > 0)? c.getString(contactNameIndex) : "unknown"; // planned to show contact's name as well
addNumberToWhiteList(number);
}
c.close();