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 e5100a6 commit ca55381Copy full SHA for ca55381
src/main/kotlin/com/lambda/interaction/request/breaking/BreakManager.kt
@@ -315,9 +315,12 @@ object BreakManager : RequestHandler<BreakRequest>(
315
* @see updateBreakProgress
316
*/
317
private fun SafeContext.processRequest(breakRequest: BreakRequest?) {
318
+ breakRequest?.let { request ->
319
+ if (request.fresh) populateFrom(request)
320
+ }
321
+
322
repeat(2) {
323
breakRequest?.let { request ->
- if (request.fresh) populateFrom(request)
324
if (performInstantBreaks(request)) {
325
processNewBreaks(request)
326
}
0 commit comments