We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac690c2 commit f2773efCopy full SHA for f2773ef
common/src/main/kotlin/com/lambda/interaction/request/breaking/BreakManager.kt
@@ -183,10 +183,9 @@ object BreakManager : RequestHandler<BreakRequest>(
183
private fun SafeContext.processRequest(request: BreakRequest) {
184
pendingBreaks.cleanUp()
185
186
- val breakConfig = request.build.breaking
187
if (request.fresh) populateFrom(request)
188
189
- if (!atMaxBreakInfos(breakConfig)) run processNewBreaks@ {
+ if (!atMaxBreakInfos(request.build.breaking)) run processNewBreaks@ {
190
if (!performInstantBreaks(request)) return@processNewBreaks
191
processNewBreaks(request)
192
}
0 commit comments