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

Commit 5e827d47 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Fix a build breakage.

Make Bluetooth code use new type instead of old.
parent f249e7ca
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);