forked from cswimr/SeaCogs
fix(pterodactyl): 🥺
This commit is contained in:
parent
9e92d82817
commit
72d8ff4782
1 changed files with 3 additions and 1 deletions
|
@ -47,7 +47,9 @@ async def establish_websocket_connection(coginstance: Pterodactyl) -> None:
|
|||
if json.loads(message)['event'] == 'console output' and await config.console_channel() is not None:
|
||||
msg = json.loads(message)['args'][0]
|
||||
regex_blacklist: dict = await config.regex_blacklist()
|
||||
if await config.current_status() in ('running', 'offline', '') and not any(re.match(regex, msg) for regex in regex_blacklist.values()):
|
||||
matches = [re.match(regex, msg) for regex in regex_blacklist.values()]
|
||||
|
||||
if await config.current_status() in ('running', 'offline', '') and not any(matches):
|
||||
content = remove_ansi_escape_codes(msg)
|
||||
if await config.mask_ip() is True:
|
||||
content = mask_ip(content)
|
||||
|
|
Loading…
Reference in a new issue