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

Commit 43cbd91b authored by xiaotonj's avatar xiaotonj Committed by Automerger Merge Worker
Browse files
parents ade83466 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;