make sure we trim the colon from url at importing contacts

This commit is contained in:
tibbi 2018-08-11 18:16:40 +02:00
parent 197670b486
commit 991e4d1e75
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ class VcfImporter(val activity: SimpleActivity) {
if (website.startsWith(";")) {
curWebsites.add(website.substringAfter(":"))
} else {
curWebsites.add(website)
curWebsites.add(website.trimStart(':'))
}
}