| Index: content/public/common/media_metadata.cc
|
| diff --git a/content/public/common/media_metadata.cc b/content/public/common/media_metadata.cc
|
| index dc3824c25b0cdc82b515387caec50f9ea356f6b7..b26aeb81763f1425466d4dd2e129d510556a0271 100644
|
| --- a/content/public/common/media_metadata.cc
|
| +++ b/content/public/common/media_metadata.cc
|
| @@ -13,7 +13,8 @@ MediaMetadata::MediaMetadata() = default;
|
| MediaMetadata::~MediaMetadata() = default;
|
|
|
| bool MediaMetadata::operator==(const MediaMetadata& other) const {
|
| - return title == other.title && artist == other.artist && album == other.album;
|
| + return title == other.title && artist == other.artist &&
|
| + album == other.album && artwork == other.artwork;
|
| }
|
|
|
| bool MediaMetadata::operator!=(const MediaMetadata& other) const {
|
|
|