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

Commit 29426de8 authored by Rakesh Iyer's avatar Rakesh Iyer Committed by Android Git Automerger
Browse files

am 1ae1c60d: am b592cd5d: am 5834da47: am 2eb3afb6: Merge "Don\'t leak PII...

am 1ae1c60d: am b592cd5d: am 5834da47: am 2eb3afb6: Merge "Don\'t leak PII into the logs." into lmp-dev

* commit '1ae1c60d':
  Don't leak PII into the logs.
parents 1e8fc18d 1ae1c60d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -574,10 +574,10 @@ public class BluetoothPbapVcardManager {
                                + composer.getErrorReason());
                        return ResponseCodes.OBEX_HTTP_INTERNAL_ERROR;
                    }
                    Log.v (TAG , "vCard from composer: " + vcard);
                    if (V) Log.v (TAG , "vCard from composer: " + vcard);
                    if (!ignorefilter) {
                        vcard = vcardfilter.applyFilter(vcard, vcardType21);
                        Log.v (TAG , "vCard on applying filter: " + vcard);
                        if (V) Log.v (TAG , "vCard on applying filter: " + vcard);
                    }
                    vcard = StripTelephoneNumber(vcard);
                    if (V) {
@@ -663,7 +663,7 @@ public class BluetoothPbapVcardManager {
                    Vcard = Vcard.concat(attr[i] + "\n");
                }
            }
        Log.v(TAG, "Vcard with stripped telephone no.: " + Vcard);
        if (V) Log.v(TAG, "Vcard with stripped telephone no.: " + Vcard);
        return Vcard;
    }