View Single Post
Old 07-10-2023, 03:50 AM   #178
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 855
Karma: 3461504
Join Date: Jan 2017
Location: Poland
Device: Various
Easy fix for covers.

In the worker.py file, change 4 to 5 and 5 to 6.

Find:
Code:
        cover_width_upsized = int(cover_node_split[4]) * 4
        cover_height_upsized = int(cover_node_split[5]) * 4
        cover_node_split[4] = str(nwidth)
        cover_node_split[5] = str(nheight)
Change to:
Code:
        cover_width_upsized = int(cover_node_split[5]) * 4
        cover_height_upsized = int(cover_node_split[6]) * 4
        cover_node_split[5] = str(nwidth)
        cover_node_split[6] = str(nheight)
BeckyEbook is offline   Reply With Quote