Merge "Don't try to scale the bitmaps for null MediaMetadata." into lmp-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
c6de3212c2
@@ -412,7 +412,9 @@ public final class MediaSession {
|
||||
* @param metadata The new metadata
|
||||
*/
|
||||
public void setMetadata(@Nullable MediaMetadata metadata) {
|
||||
metadata = (new MediaMetadata.Builder(metadata, mMaxBitmapSize)).build();
|
||||
if (metadata != null ) {
|
||||
metadata = (new MediaMetadata.Builder(metadata, mMaxBitmapSize)).build();
|
||||
}
|
||||
try {
|
||||
mBinder.setMetadata(metadata);
|
||||
} catch (RemoteException e) {
|
||||
|
||||
Reference in New Issue
Block a user