1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-18 03:09:57 +00:00

Merge pull request #50 from OzzieIsaacs/patch-3

Fix #20
This commit is contained in:
cervinko 2016-08-07 22:32:02 +02:00 committed by GitHub
commit df5ab3d294

View File

@ -52,7 +52,7 @@ books_languages_link = Table('books_languages_link', Base.metadata,
cc = conn.execute("SELECT id, datatype FROM custom_columns")
cc_ids = []
cc_exceptions = ['bool', 'datetime', 'int', 'comments', 'float', ]
cc_exceptions = ['bool', 'datetime', 'int', 'comments', 'float', 'composite','series' ]
books_custom_column_links = {}
for row in cc:
if row.datatype not in cc_exceptions: