changed formatting for mdn from . to -

This commit is contained in:
Rebecca Antonelli 2023-03-31 13:48:11 -05:00
parent 081dbbf65e
commit 81bcbd42de

View File

@ -150,8 +150,8 @@
if(mdn.length == LengthContactNumber) { if(mdn.length == LengthContactNumber) {
NSMutableString * newmdn = [NSMutableString stringWithCapacity:14]; NSMutableString * newmdn = [NSMutableString stringWithCapacity:14];
[newmdn appendString:mdn]; [newmdn appendString:mdn];
[newmdn insertString:@"." atIndex:6]; [newmdn insertString:@"-" atIndex:6];
[newmdn insertString:@"." atIndex:3]; [newmdn insertString:@"-" atIndex:3];
return newmdn; return newmdn;
} }