/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: 2013-07-19 16:00:46 UTC
  • Revision ID: tim@ed.am-20130719160046-rmncub8oosck21xx
bump version no. to 1.0.2

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();
 
327
                String birthday = contact.getBirthday().trim();
328
328
                if( birthday != null ) {
329
 
                        birthday.trim();
330
329
                        if( isValidDateAndOrTime( birthday ) )
331
330
                                out.append( fold( "BDAY:" + escape( birthday ) ) + "\n" );
332
331
                        else