diff --git a/TODO.md b/TODO.md index 8bbb5005..4087aaf3 100644 --- a/TODO.md +++ b/TODO.md @@ -10,7 +10,6 @@ - fix message delegate too tall - fix left rooms opacity - fix escape keybinds (filter rooms, message selection) -- fix nio 429 - fix python getting stuck when loading large room - account delegates refactor diff --git a/src/gui/PythonBridge/Privates/EventHandlers.qml b/src/gui/PythonBridge/Privates/EventHandlers.qml index 6bb1e91e..e8bc87cc 100644 --- a/src/gui/PythonBridge/Privates/EventHandlers.qml +++ b/src/gui/PythonBridge/Privates/EventHandlers.qml @@ -44,7 +44,6 @@ QtObject { function onLoopException(message, error, traceback) { - if (traceback.includes("429, None")) return // No need to log these here, the asyncio exception handler does it const type = py.getattr(py.getattr(error, "__class__"), "__name__") utils.showError(type, traceback, message)