mirror of
https://github.com/beetbox/beets.git
synced 2026-02-09 00:41:57 +01:00
Fix propagation of redact flag
This commit is contained in:
parent
c37561c74b
commit
105ee6d276
1 changed files with 1 additions and 1 deletions
|
|
@ -353,7 +353,7 @@ class ConfigView(object):
|
|||
od[key] = REDACTED_TOMBSTONE
|
||||
else:
|
||||
try:
|
||||
od[key] = view.flatten(redact=True)
|
||||
od[key] = view.flatten(redact=redact)
|
||||
except ConfigTypeError:
|
||||
od[key] = view.get()
|
||||
return od
|
||||
|
|
|
|||
Loading…
Reference in a new issue