Skip to content

Commit edaa79d

Browse files
committed
Inverted condition
1 parent acb3c43 commit edaa79d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/io/vertx/mqtt/impl/MqttClientImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ public synchronized void pause() {
731731
}
732732

733733
public synchronized boolean isPaused() {
734-
return connOption.isAutoRead();
734+
return !connOption.isAutoRead();
735735
}
736736

737737
@Override

0 commit comments

Comments
 (0)