summary refs log tree commit diff
path: root/changelog.d/5885.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Avoid deep recursion in appservice recovery (#5885)Richard van der Hoff2019-08-201-0/+1
Hopefully, this will fix a stack overflow when recovering an appservice. The recursion here leads to a huge chain of deferred callbacks, which then overflows the stack when the chain completes. `inlineCallbacks` makes a better job of this if we use iteration instead. Clean up the code a bit too, while we're there.