Skip to content

Commit 0c19298

Browse files
committed
Fix: Possible error when opening a comic on startup
1 parent 43bc73d commit 0c19298

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1717
- Some tap zones events not working [`225de43`](https://github.com/ollm/OpenComic/commit/225de437284d4db2b10b5a42bd90ddfe8711c001)
1818
- Thumbnails and progress missing when filtering current page [`beb5f90`](https://github.com/ollm/OpenComic/commit/beb5f908deb81606269aff9a6b041e7511006a2e)
1919
- Rare cases of blank images during reading [`e1f27b3`](https://github.com/ollm/OpenComic/commit/e1f27b315bc9023e35c7ea52122d3c918564f5e3)
20-
- Show magnifying glass instantaneous when enabled from shortcuts
20+
- Show magnifying glass instantaneous when enabled from shortcuts [`43bc73d`](https://github.com/ollm/OpenComic/commit/43bc73dcf85d80e756f1b674a64c66c7ce75529c)
2121

2222
## [v1.6.0](https://github.com/ollm/OpenComic/releases/tag/v1.6.0) (27-07-2025)
2323

scripts/opencomic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ async function startApp()
400400
$('body .app').css('display', 'block');
401401
$('body .preload').css('display', 'none');
402402

403-
if(onReading && !reading.isEbook())
403+
if(onReading && reading.isLoaded() && !reading.isEbook())
404404
{
405405
reading.disposeImages();
406406
reading.calculateView();

0 commit comments

Comments
 (0)