更新 __init__.py

This commit is contained in:
jxxghp
2024-01-31 18:35:23 +08:00
committed by GitHub
parent a48ed40bab
commit b8406c7b5d

View File

@@ -16,7 +16,7 @@ class IyuuMsg(_PluginBase):
# 插件图标
plugin_icon = "Iyuu_A.png"
# 插件版本
plugin_version = "1.1"
plugin_version = "1.2"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -173,7 +173,7 @@ class IyuuMsg(_PluginBase):
return
try:
sc_url = "http://iyuu.cn/%s.send?%s" % (self._token, urlencode({"text": title, "desp": text}))
sc_url = "https://iyuu.cn/%s.send?%s" % (self._token, urlencode({"text": title, "desp": text}))
res = RequestUtils().get_res(sc_url)
if res and res.status_code == 200:
ret_json = res.json()