/android/import-contacts

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

« back to all changes in this revision

Viewing changes to src/am/ed/importcontacts/ContactsCache.java

  • Committer: Tim Marston
  • Date: 2016-03-28 18:18:11 UTC
  • Revision ID: tim@ed.am-20160328181811-as61lllmvnv8e5os
handle vcards with missing vesion lines (treat as v2.1)

Show diffs side-by-side

added added

removed removed

373
373
        static public String normaliseEmailAddress( String email )
374
374
        {
375
375
                if( email == null ) return null;
376
 
                email = email.trim().toLowerCase( Locale.US );
 
376
                email = email.trim().toLowerCase( Locale.ENGLISH );
377
377
                return email.length() > 0? email : null;
378
378
        }
379
379