Fix #2106205 [Calibre 8,2 show an Unhandled Exception when you try to open book filesd Nu](https://bugs.launchpad.net/calibre/+bug/2106205)

This commit is contained in:
Kovid Goyal 2025-04-04 11:08:38 +05:30
parent e002e5d511
commit 538d4f81af
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1480,7 +1480,7 @@ class BookDetails(DetailsLayout, DropMixin): # {{{
if typ == 'action': if typ == 'action':
data = json_loads(from_hex_bytes(val)) data = json_loads(from_hex_bytes(val))
if data['url'] == NO_SEARCH_LINK: if data.get('url') == NO_SEARCH_LINK:
return return
dt = data['type'] dt = data['type']
if dt == 'search': if dt == 'search':