James Barnes
Results
2
comments of
James Barnes
Just ran into this problem. I solved it by setting the cover OR adding an item. This fixed both problems; the cover not showing at the beginning and the file...
Just ran into this bug; 'viewBox' is renamed to 'viewbox'. Code hack works. I needed to convert the strings to bytes ``` # https://github.com/aerkalov/ebooklib/pull/170 tree_str = tree_str.replace(b'preserveaspectratio',b'preserveAspectRatio') tree_str = tree_str.replace(b'viewbox',b'viewBox')...