No longer need to pass a default quality here

This commit is contained in:
Daniel Barber 2020-02-18 16:44:45 -05:00
parent 036202e1c5
commit 96b0e8a33e
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ class Candidate(object):
def resize(self, plugin):
if plugin.maxwidth and self.check == self.CANDIDATE_DOWNSCALE:
self.path = ArtResizer.shared.resize(plugin.maxwidth, 75, self.path)
self.path = ArtResizer.shared.resize(plugin.maxwidth, self.path)
def _logged_get(log, *args, **kwargs):

View file

@ -152,7 +152,7 @@ class ThumbnailsPlugin(BeetsPlugin):
self._log.debug(u"{1}x{1} thumbnail for {0} exists and is "
u"recent enough", album, size)
return False
resized = ArtResizer.shared.resize(size, 75, album.artpath,
resized = ArtResizer.shared.resize(size, album.artpath,
util.syspath(target))
self.add_tags(album, util.syspath(resized))
shutil.move(resized, target)