mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-11 05:33:57 +00:00
Fix restrict columns
This commit is contained in:
parent
e44494aad0
commit
00dafe3121
@ -810,7 +810,7 @@ def get_cc_columns():
|
|||||||
cc = []
|
cc = []
|
||||||
for col in tmpcc:
|
for col in tmpcc:
|
||||||
r = re.compile(config.config_columns_to_ignore)
|
r = re.compile(config.config_columns_to_ignore)
|
||||||
if r.match(col.label):
|
if not r.match(col.name):
|
||||||
cc.append(col)
|
cc.append(col)
|
||||||
else:
|
else:
|
||||||
cc = tmpcc
|
cc = tmpcc
|
||||||
|
Loading…
Reference in New Issue
Block a user