This commit is contained in:
jxxghp
2024-04-18 08:12:15 +08:00
parent 2223885f21
commit caa2e67c3f
2 changed files with 7 additions and 4 deletions

View File

@@ -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消息推送",

View File

@@ -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 [
{