We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abcbc35 commit a87fb2eCopy full SHA for a87fb2e
app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/ContactsHelper.kt
@@ -258,6 +258,13 @@ class ContactsHelper(val context: Context) {
258
contacts[key]?.notes = notes.valueAt(i)
259
}
260
261
+ val nicknames = getNicknames()
262
+ size = nicknames.size()
263
+ for (i in 0 until size) {
264
+ val key = nicknames.keyAt(i)
265
+ contacts[key]?.nickname = nicknames.valueAt(i)
266
+ }
267
+
268
val websites = getWebsites()
269
size = websites.size()
270
for (i in 0 until size) {
0 commit comments