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

Commit 7b5b3a1a authored by Sungsoo Lim's avatar Sungsoo Lim Committed by android-build-merger
Browse files

Merge "MediaBrowser: Copy options before using it in subscribe()" into nyc-dev am: e10739ab

am: b8281475

* commit 'b8281475':
  MediaBrowser: Copy options before using it in subscribe()
parents 6af2247a b8281475
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1121,7 +1121,7 @@ public final class MediaBrowser {
                }
                }
            }
            }
            mCallbacks.add(callback);
            mCallbacks.add(callback);
            mOptionsList.add(options);
            mOptionsList.add(options == null ? null : new Bundle(options));
        }
        }


        public boolean removeCallback(Bundle options) {
        public boolean removeCallback(Bundle options) {