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

Commit 7a89fdae authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "TbsGatt: Fix crash in logs" into main

parents ee4b0d4d b979296e
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -913,10 +913,8 @@ public class TbsGatt {
    public boolean setIncomingCall(int callIndex, String uri) {
        Log.d(
                TAG,
                "setIncomingCall: callIndex="
                        + callIndex
                        + " uri="
                        + Uri.parse(uri).toSafeString());
                ("setIncomingCall: callIndex=" + callIndex)
                        + (" uri=" + (uri == null ? "null" : Uri.parse(uri).toSafeString())));
        int uri_len = 0;
        if (uri != null) {
            uri_len = uri.length();