/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/org/waxworlds/edam/exportcontacts/VcardExporter.java

  • Committer: edam
  • Date: 2011-06-11 12:12:32 UTC
  • Revision ID: edam@waxworlds.org-20110611121232-kaw8var6kly60ur3
- fixed rather glaring error in vcard beginand end fields

Show diffs side-by-side

added added

removed removed

176
176
                        return false;
177
177
 
178
178
                // append header
179
 
                out.append( "VCARD:BEGIN\n" );
 
179
                out.append( "BEGIN:VCARD\n" );
180
180
                out.append( "VERSION:3.0\n" );
181
181
 
182
182
                // append formatted name
276
276
                }
277
277
 
278
278
                // append footer
279
 
                out.append( "VCARD:END\n" );
 
279
                out.append( "END:VCARD\n" );
280
280
 
281
281
                // write to file
282
282
                try {