[postprocessor] Don't replace existing value with null metadata parsed from title

pull/31018/head
dirkf 3 years ago committed by Bartosz Białas
parent 27281eb5bb
commit 6b98eb46fc

@ -40,6 +40,8 @@ class MetadataFromTitlePP(PostProcessor):
% self._titleformat)
return [], info
for attribute, value in match.groupdict().items():
if value is None:
continue
info[attribute] = value
self._downloader.to_screen(
'[fromtitle] parsed %s: %s'

Loading…
Cancel
Save