mirror of
https://github.com/beetbox/beets.git
synced 2026-02-02 05:21:45 +01:00
fix memoization presence check
This commit is contained in:
parent
de87fb7489
commit
e85fe2d834
1 changed files with 1 additions and 1 deletions
|
|
@ -1450,7 +1450,7 @@ class DefaultTemplateFunctions(object):
|
|||
return None
|
||||
memokey = ('aunique', keys, disam, self.item.album_id)
|
||||
memoval = self.lib._memotable.get(memokey)
|
||||
if memoval:
|
||||
if memoval is not None:
|
||||
return memoval
|
||||
|
||||
keys = keys or 'albumartist album'
|
||||
|
|
|
|||
Loading…
Reference in a new issue