/android/export-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/export-contacts

« back to all changes in this revision

Viewing changes to src/am/ed/exportcontacts/VcardExporter.java

  • Committer: Tim Marston
  • Date: 2014-03-01 18:03:39 UTC
  • Revision ID: tim@ed.am-20140301180339-rmfh8x7wys2inc65
new family pic

Show diffs side-by-side

added added

removed removed

324
324
                                out.append( fold( "NOTE:" + escape( notes.get( a ) ) ) + "\n" );
325
325
 
326
326
                // append birthday
327
 
                String birthday = contact.getBirthday().trim();
 
327
                String birthday = contact.getBirthday();
328
328
                if( birthday != null ) {
 
329
                        birthday.trim();
329
330
                        if( isValidDateAndOrTime( birthday ) )
330
331
                                out.append( fold( "BDAY:" + escape( birthday ) ) + "\n" );
331
332
                        else