Skip to content

Commit

Permalink
Fix: Error attempting to open the bookmarks menu after navigating to …
Browse files Browse the repository at this point in the history
…a bookmark
  • Loading branch information
ollm committed Jan 19, 2025
1 parent 97b50f3 commit 80c1b0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.3.2 (dd-mm-yyyy)
## v1.4.0 (dd-mm-yyyy)

##### 🚀 New Features

Expand All @@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Save image not saving the correct page in manga mode [`b14a26e`](https://github.com/ollm/OpenComic/commit/b14a26eacdc77d37cdeb578fc203438058c7c5e2)
- Sometimes right click on reading fails [`b14a26e`](https://github.com/ollm/OpenComic/commit/1a8e145a997c67494e1a6c70c5f73acee7720000)
- Avoid generating thumbnails of images that are still being extracted (Extractions with 7-Zip) [`c415b3f`](https://github.com/ollm/OpenComic/commit/c415b3f0f6eb4bd6eb1bdd6cdd8a191b809df91e)
- Error attempting to open the bookmarks menu after navigating to a bookmark

## [v1.3.1](https://github.com/ollm/OpenComic/releases/tag/v1.3.1) (05-10-2024)

Expand Down
4 changes: 2 additions & 2 deletions scripts/opencomic.js
Original file line number Diff line number Diff line change
Expand Up @@ -920,12 +920,12 @@ function showAboutWindow()

function escapeBackSlash(string)
{
return string.replace(/\\/g, '\\\\');
return (string || '').replace(/\\/g, '\\\\');
}

function invertBackslash(string)
{
return string.replace(/\\+/g, '/');
return (string || '').replace(/\\+/g, '/');
}

function encodeSrcURI(string)
Expand Down

0 comments on commit 80c1b0e

Please sign in to comment.