1
mirror of git://git.acid.vegas/IRCP.git synced 2024-11-22 16:06:41 +00:00

Fixed error_conn to errors_conn

This commit is contained in:
Dionysus 2023-05-29 21:27:18 -04:00
parent 751b28eac5
commit 60ee352e9f
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -153,12 +153,12 @@ class probe:
try: try:
await self.connect() await self.connect()
except Exception as ex: except Exception as ex:
if settings.error_conn: if settings.errors_conn:
error(self.display + 'failed to connect using SSL/TLS', ex) error(self.display + 'failed to connect using SSL/TLS', ex)
try: try:
await self.connect(True) await self.connect(True)
except Exception as ex: except Exception as ex:
if settings.error_conn: if settings.errors_conn:
error(self.display + 'failed to connect', ex) error(self.display + 'failed to connect', ex)
async def raw(self, data): async def raw(self, data):