diff --git a/CHANGELOG.md b/CHANGELOG.md index 53d1d3cd..cdd6e87a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). - (**Reader**) Fix mouse cursor drift during drag scroll - (**Reader**) Fix deletion of chapters while reading - (**Reader**) Fix potential page loss (continuous horizontal mode window resize, reader width change, page scale change) - (**Reader**) Fix current page detection in continuous horizontal mode with right-to-left reading mode +- (**Reader**) Fix current page detection in continuous horizontal mode with right-to-left reading mode +- (**Reader**) Fix occasionally jumping to random pages in continuous reading modes - (**Extension**) Fix handling obsolete extensions as updatable in case they are marked as having an available update - (**Theme**) Fix loading of fonts defined in themes - (**Reader**) Fix broken scrolling in continuous horizontal reading mode diff --git a/src/base/components/SpinnerImage.tsx b/src/base/components/SpinnerImage.tsx index ce485676..8d3af737 100644 --- a/src/base/components/SpinnerImage.tsx +++ b/src/base/components/SpinnerImage.tsx @@ -96,7 +96,7 @@ export const SpinnerImage = ({ ref, ...props }: SpinnerImageProps) => { ); useEffect(() => { - if (showMissingImageIcon || !shouldLoad) { + if (showMissingImageIcon || !shouldLoad || !!imageSourceUrl) { return () => {}; }