Skip to content

Commit

Permalink
always emit the album art URL representing the largest image to DBus (#…
Browse files Browse the repository at this point in the history
…1132)

* always emit the album art URL representing the largest image to DBus

Co-authored-by: eladyn <59307989+eladyn@users.noreply.github.com>
  • Loading branch information
l1na-forever and eladyn authored Nov 23, 2022
1 parent 1a1997c commit c22b819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dbus_mpris.rs
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ fn insert_metadata(m: &mut HashMap<String, Variant<Box<dyn RefArg>>>, item: Play
Variant(Box::new(
item.images
.into_iter()
.next()
.max_by_key(|i| i.width.unwrap_or(0))
.map(|i| i.url)
.unwrap_or_default(),
)),
Expand Down

0 comments on commit c22b819

Please # to comment.