Fixed crash on opening invite-only memo without being invited

This commit is contained in:
Dpeta 2021-07-26 13:59:25 +02:00
parent c74dd89027
commit 83343238dd
2 changed files with 5 additions and 1 deletions

View file

@ -1,12 +1,15 @@
# Changelog # Changelog
(This document uses YYYY-MM-DD as per ISO 8601) (This document uses YYYY-MM-DD as per ISO 8601)
## [v2.1.3] - 2021-5-3 ## [v2.1.3] - 2021-7-16
### Added ### Added
- pyinstaller.py script to make building with pyinstaller more convenient. - pyinstaller.py script to make building with pyinstaller more convenient.
- Themes by cubicSimulation. - Themes by cubicSimulation.
### Fixed
- Crash when opening invite-only memo. (My bad-)
### Changed ### Changed
- Honk emote now only triggers when typing ':honk:' instead of on every 'honk'. - Honk emote now only triggers when typing ':honk:' instead of on every 'honk'.

View file

@ -12,6 +12,7 @@ from parsetools import convertTags, addTimeInitial, timeProtocol, \
lexMessage, colorBegin, colorEnd, mecmd, smiledict lexMessage, colorBegin, colorEnd, mecmd, smiledict
import parsetools import parsetools
from logviewer import PesterLogViewer from logviewer import PesterLogViewer
import logging
try: try:
QString = unicode QString = unicode