Skip to content

Commit

Permalink
Fix: Error on reading single image
Browse files Browse the repository at this point in the history
  • Loading branch information
ollm authored Jan 7, 2025
1 parent 042e0f7 commit d4fa53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/reading.js
Original file line number Diff line number Diff line change
Expand Up @@ -5265,7 +5265,7 @@ async function read(path, index = 1, end = false, isCanvas = false, isEbook = fa
readingFile = fileManager.file();
readingFileC = false;

render.setOnRender((readingDoublePage() ? 2 : 1), function(){
render.setOnRender((readingDoublePage() && imagesNum > 1 ? 2 : 1), function(){

const contentRight = template._contentRight();

Expand Down

0 comments on commit d4fa53b

Please sign in to comment.