Skip to content

Commit

Permalink
fix - Fixed MeCard conversion
Browse files Browse the repository at this point in the history
---

We've adjusted the MeCard conversion process.

---

Type: fix
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Oct 3, 2024
1 parent 4b7df72 commit 608a56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VisualCard.Extras/Converters/MeCard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static Card[] GetContactsFromMeCardString(string meCardString)
string prefix =
$"{VcardConstants._telephoneSpecifier}" +
$"{VcardConstants._fieldDelimiter}" +
$"{VcardConstants._typeArgumentSpecifier}VIDEO{VcardConstants._argumentDelimiter}";
$"{VcardConstants._typeArgumentSpecifier}=VIDEO{VcardConstants._argumentDelimiter}";
values[i] = prefix + values[i].Substring(7);
}
}
Expand Down

0 comments on commit 608a56c

Please sign in to comment.