Skip to content

Commit a1b4595

Browse files
committed
Bugfix
1 parent f00a14e commit a1b4595

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

miniirc_matrix.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import miniirc, requests, traceback # type: ignore
1313

1414

15-
ver = (0, 0, 9)
15+
ver = (0, 0, 10)
1616
__version__ = '.'.join(map(str, ver))
1717

1818

@@ -480,8 +480,8 @@ def _main(self) -> None:
480480
self.__numeric('001', f'Welcome to Matrix {self.current_nick}')
481481

482482
next_batch: Optional[str] = None
483+
self.connected = True
483484
while self.connected:
484-
req_time = time.monotonic()
485485
try:
486486
res = self.__get('sync', 35, timeout='30000',
487487
since=next_batch)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='miniirc_matrix',
8-
version='0.0.9',
8+
version='0.0.10',
99
py_modules=['miniirc_matrix'],
1010
author='luk3yx',
1111
description='A Matrix wrapper for miniirc.',

0 commit comments

Comments
 (0)