make sure we trim the colon from url at importing contacts
This commit is contained in:
parent
197670b486
commit
991e4d1e75
1 changed files with 1 additions and 1 deletions
|
|
@ -282,7 +282,7 @@ class VcfImporter(val activity: SimpleActivity) {
|
||||||
if (website.startsWith(";")) {
|
if (website.startsWith(";")) {
|
||||||
curWebsites.add(website.substringAfter(":"))
|
curWebsites.add(website.substringAfter(":"))
|
||||||
} else {
|
} else {
|
||||||
curWebsites.add(website)
|
curWebsites.add(website.trimStart(':'))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue