[postprocessor] Don't replace existing value with null metadata parsed from title
This commit is contained in:
parent
d231b56717
commit
e52e8b8111
1 changed files with 2 additions and 0 deletions
|
@ -40,6 +40,8 @@ class MetadataFromTitlePP(PostProcessor):
|
||||||
% self._titleformat)
|
% self._titleformat)
|
||||||
return [], info
|
return [], info
|
||||||
for attribute, value in match.groupdict().items():
|
for attribute, value in match.groupdict().items():
|
||||||
|
if value is None:
|
||||||
|
continue
|
||||||
info[attribute] = value
|
info[attribute] = value
|
||||||
self._downloader.to_screen(
|
self._downloader.to_screen(
|
||||||
'[fromtitle] parsed %s: %s'
|
'[fromtitle] parsed %s: %s'
|
||||||
|
|
Loading…
Reference in a new issue