mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-16 12:04:30 +01:00
Plugin updater dialog: Use index names
Use index names as the key for plugins rather than names from the plugin zip file, as deprecated plugins sometimes have the same name in the zip file, but different names in the index.
This commit is contained in:
parent
8d3fd8b05c
commit
768cd4d887
1 changed files with 1 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ def __init__(self, parent):
|
|||
class DisplayPlugin(object):
|
||||
|
||||
def __init__(self, plugin):
|
||||
self.name = plugin['name']
|
||||
self.name = plugin['index_name']
|
||||
self.forum_link = plugin['thread_url']
|
||||
self.zip_url = SERVER + plugin['file']
|
||||
self.installed_version = None
|
||||
|
|
|
|||
Loading…
Reference in a new issue