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 4f8986b commit e684e80Copy full SHA for e684e80
core/src/main/kotlin/spp/jetbrains/indicator/LiveIndicator.kt
@@ -51,7 +51,7 @@ abstract class LiveIndicator(val project: Project) {
51
vertx.setPeriodic(5000) { timerId ->
52
periodicTimerId = timerId
53
vertx.safeLaunch {
54
- if (SourceStatusService.getInstance(project).getCurrentStatus().first != Ready) {
+ if (!SourceStatusService.getInstance(project).isReady()) {
55
log.debug("Not ready, ignoring indicator refresh")
56
return@safeLaunch
57
}
0 commit comments