mirror of
https://github.com/hyper-neptune/yuuki.git
synced 2024-11-15 19:04:37 +08:00
Fix Group URL Status Changing Bug
This commit is contained in:
parent
0784115497
commit
e165276145
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ class Yuuki_Settings:
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
"name": "Yuuki",
|
"name": "Yuuki",
|
||||||
"version": "v6.5.1_RC3",
|
"version": "v6.5.1_RC4",
|
||||||
"project_url": "https://tinyurl.com/syb-yuuki",
|
"project_url": "https://tinyurl.com/syb-yuuki",
|
||||||
"man_page": "https://tinyurl.com/yuuki-manual",
|
"man_page": "https://tinyurl.com/yuuki-manual",
|
||||||
"privacy_page": "OpenSource - Licensed under MPL 2.0",
|
"privacy_page": "OpenSource - Licensed under MPL 2.0",
|
||||||
|
@ -653,7 +653,7 @@ class Yuuki:
|
||||||
if YuukiVariable["SecurityService"]:
|
if YuukiVariable["SecurityService"]:
|
||||||
if ncMessage.type == OpType.NOTIFIED_UPDATE_GROUP and Security_Access:
|
if ncMessage.type == OpType.NOTIFIED_UPDATE_GROUP and Security_Access:
|
||||||
if Another == '4':
|
if Another == '4':
|
||||||
if not GroupInfo.preventJoinByTicket:
|
if not GroupInfo.preventJoinByTicket and Action not in self.Connect.helper_ids:
|
||||||
self.Thread_Exec(self.changeGroupUrlStatus, (GroupInfo, False))
|
self.Thread_Exec(self.changeGroupUrlStatus, (GroupInfo, False))
|
||||||
self.Thread_Exec(self.sendText, (GroupID, _("DO NOT ENABLE THE GROUP URL STATUS, see you...")))
|
self.Thread_Exec(self.sendText, (GroupID, _("DO NOT ENABLE THE GROUP URL STATUS, see you...")))
|
||||||
Kicker = self.kickSomeone(GroupInfo, Action)
|
Kicker = self.kickSomeone(GroupInfo, Action)
|
||||||
|
|
Loading…
Reference in a new issue