Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b05ed484 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa Committed by Android Git Automerger
Browse files

am 5e827d47: Fix a build breakage.

Merge commit '5e827d47'

* commit '5e827d47':
  Fix a build breakage.
parents c7fd75da 5e827d47
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -362,9 +362,9 @@ public class BluetoothPbapVcardManager {
            // Currently only support Generic Vcard 2.1 and 3.0
            int vcardType;
            if (vcardType21) {
                vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
                vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC_UTF8;
            } else {
                vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
                vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC_UTF8;
            }

            composer = new VCardComposer(mContext, vcardType, true);