Skip to content

Commit d60727f

Browse files
committed
Fixed MqttClientConnectionConfig.isCleanStart
1 parent c94d606 commit d60727f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/hivemq/client/internal/mqtt/MqttClientConnectionConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public int getKeepAlive() {
148148
}
149149

150150
public boolean isCleanStart() {
151-
return (flags & FLAG_CLEAN_STOP) != 0;
151+
return (flags & FLAG_CLEAN_START) != 0;
152152
}
153153

154154
public boolean isCleanStop() {

0 commit comments

Comments
 (0)