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

pull/27360/merge
dirkf 2 years ago
parent d231b56717
commit e52e8b8111

@ -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