From abc69d46739418b0218fd82d10ba5719999945cf Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sun, 19 Oct 2025 19:47:27 +0200 Subject: [PATCH] Linking content check --- cbz/page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbz/page.py b/cbz/page.py index 599b3dd..4f1a635 100644 --- a/cbz/page.py +++ b/cbz/page.py @@ -98,7 +98,7 @@ class PageInfo(PageModel): path = Path(path) with path.open(mode='rb') as f: kwargs.setdefault('name', path.name) - return cls(f.read(), **kwargs) + return cls.loads(f.read(), **kwargs) def show(self) -> None: """