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

Commit 31ff2441 authored by Grace Jia's avatar Grace Jia Committed by Gerrit Code Review
Browse files

Merge "DO NOT MERGE Fix areBundleEqual in Call." into main

parents f6b0c5d0 8d552499
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2951,11 +2951,11 @@ public final class Call {

        for(String key : bundle.keySet()) {
            if (key != null) {
                final Object value = bundle.get(key);
                final Object newValue = newBundle.get(key);
                if (!newBundle.containsKey(key)) {
                    return false;
                }
                final Object value = bundle.get(key);
                final Object newValue = newBundle.get(key);
                if (value instanceof Bundle && newValue instanceof Bundle) {
                    if (!areBundlesEqual((Bundle) value, (Bundle) newValue)) {
                        return false;