Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow fetchart to manipulate cover art candidates using all selected options #5440

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
4 changes: 2 additions & 2 deletions beets/art.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ def resize_image(log, imagepath, maxwidth, quality):
maxwidth,
quality,
)
imagepath = ArtResizer.shared.resize(
maxwidth, syspath(imagepath), quality=quality
imagepath = ArtResizer.shared.convert(
syspath(imagepath), maxwidth=maxwidth, quality=quality
)
return imagepath

Expand Down
Loading
Loading