diff --git a/package.json b/package.json index 55ee9d7..bc5f98b 100644 --- a/package.json +++ b/package.json @@ -505,10 +505,13 @@ "IyuuAuth": { "name": "IYUU站点绑定", "description": "为IYUU账号绑定认证站点,以便用于用户认证和辅种。", - "version": "1.0", + "version": "1.1", "icon": "Iyuu_A.png", "author": "jxxghp", - "level": 1 + "level": 1, + "history": { + "v1.1": "修复IYUU站点绑定失败问题" + } }, "NtfyMsg": { "name": "ntfy消息推送", diff --git a/plugins/iyuuauth/__init__.py b/plugins/iyuuauth/__init__.py index 19c54ff..0eadde9 100644 --- a/plugins/iyuuauth/__init__.py +++ b/plugins/iyuuauth/__init__.py @@ -14,7 +14,7 @@ class IyuuAuth(_PluginBase): # 插件图标 plugin_icon = "Iyuu_A.png" # 插件版本 - plugin_version = "1.0" + plugin_version = "1.1" # 插件作者 plugin_author = "jxxghp" # 作者主页 @@ -85,7 +85,7 @@ class IyuuAuth(_PluginBase): for item in self.iyuu.get_auth_sites() or []: SiteOptions.append({ "title": item.get("site"), - "value": item.get("id") + "value": item.get("site") }) return [ {