mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Store: OpenSearchStore fix opening store directly.
This commit is contained in:
parent
8ae7d310e8
commit
5570a17ee0
@ -23,10 +23,13 @@ class OpenSearchStore(StorePlugin):
|
|||||||
web_url = ''
|
web_url = ''
|
||||||
|
|
||||||
def open(self, parent=None, detail_item=None, external=False):
|
def open(self, parent=None, detail_item=None, external=False):
|
||||||
|
if not hasattr(self, 'web_url'):
|
||||||
|
return
|
||||||
|
|
||||||
if external or self.config.get('open_external', False):
|
if external or self.config.get('open_external', False):
|
||||||
open_url(QUrl(detail_item if detail_item else self.url))
|
open_url(QUrl(detail_item if detail_item else self.web_url))
|
||||||
else:
|
else:
|
||||||
d = WebStoreDialog(self.gui, self.url, parent, detail_item)
|
d = WebStoreDialog(self.gui, self.web_url, parent, detail_item)
|
||||||
d.setWindowTitle(self.name)
|
d.setWindowTitle(self.name)
|
||||||
d.set_tags(self.config.get('tags', ''))
|
d.set_tags(self.config.get('tags', ''))
|
||||||
d.exec_()
|
d.exec_()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user