Remove 429 workaround (fixed in nio #138)

This commit is contained in:
miruka 2020-05-10 17:32:06 -04:00
parent c2e212c1eb
commit 7aa0e7fad6
2 changed files with 0 additions and 2 deletions

View File

@ -10,7 +10,6 @@
- fix message delegate too tall - fix message delegate too tall
- fix left rooms opacity - fix left rooms opacity
- fix escape keybinds (filter rooms, message selection) - fix escape keybinds (filter rooms, message selection)
- fix nio 429
- fix python getting stuck when loading large room - fix python getting stuck when loading large room
- account delegates refactor - account delegates refactor

View File

@ -44,7 +44,6 @@ QtObject {
function onLoopException(message, error, traceback) { function onLoopException(message, error, traceback) {
if (traceback.includes("429, None")) return
// No need to log these here, the asyncio exception handler does it // No need to log these here, the asyncio exception handler does it
const type = py.getattr(py.getattr(error, "__class__"), "__name__") const type = py.getattr(py.getattr(error, "__class__"), "__name__")
utils.showError(type, traceback, message) utils.showError(type, traceback, message)