altered contact/add in order to make use of the new contact backend instead of the legacy API

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-10-10 14:41:03 +02:00
parent e5227c3e19
commit 1cfaa3ccc6
9 changed files with 47 additions and 36 deletions

View File

@@ -14,9 +14,9 @@ export function addr(vcard){
adr.box = parts[0];
adr.ext = parts[1];
adr.street = parts[2];
adr.loc = parts[3];
adr.locality = parts[3];
adr.region = parts[4];
adr.code = parts[5];
adr.post_code = parts[5];
adr.country = parts[6];
}
return adr;