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.
2 parents 21c988b + d704b8b commit e1da6fdCopy full SHA for e1da6fd
ide-common/src/main/kotlin/org/digma/intellij/plugin/digmathon/DigmathonService.kt
@@ -94,7 +94,7 @@ class DigmathonService : Disposable {
94
//let the project load and hopefully all jcef apps
95
delay(1.minutes.inWholeMilliseconds)
96
97
- while (isActive) {
+ while (isActive && digmathonInfo.get().isActive()) {
98
try {
99
100
if (!isDigmathonActive.get() && digmathonInfo.get().isActive()) {
@@ -115,6 +115,10 @@ class DigmathonService : Disposable {
115
ErrorReporter.getInstance().reportError("DigmathonService.timer", e)
116
}
117
118
+
119
+ if (digmathonInfo.get().isEnded()) {
120
+ end()
121
+ }
122
123
124
0 commit comments