Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
luk3yx committed May 22, 2022
1 parent 0b4d14b commit af6a763
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions miniirc_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import miniirc, requests, traceback # type: ignore


ver = (0, 0, 5)
ver = (0, 0, 6)
__version__ = '.'.join(map(str, ver))


Expand Down Expand Up @@ -398,7 +398,7 @@ def _update_baseurl(self) -> None:
# Non-SSL localhost connections are probably to
# https://github.com/matrix-org/pantalaimon which doesn't support
# the "v3" URLs yet.
matrix_url = f'http://{hostname}'
baseurl = f'http://{hostname}'
api_version = 'r0'
else:
api_version = 'v3'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='miniirc_matrix',
version='0.0.5',
version='0.0.6',
py_modules=['miniirc_matrix'],
author='luk3yx',
description='A Matrix wrapper for miniirc.',
Expand Down

0 comments on commit af6a763

Please sign in to comment.