Sign in
简柏林
/
thingskit
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Plain Diff
Browse Files
Commit
8fd37663b982ea70af4cb880e219dbfda37e3ad8
Authored by
Andrew Shvayka
2018-11-13 14:11:45 +0200
2 parents
d80f666b
d7c755a5
Merge branch 'master' of github.com:thingsboard/thingsboard
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
netty-mqtt/src/main/java/org/thingsboard/mqtt/MqttClientImpl.java
netty-mqtt/src/main/java/org/thingsboard/mqtt/MqttClientImpl.java
View file @
8fd3766
...
...
@@ -390,7 +390,9 @@ final class MqttClientImpl implements MqttClient {
390
390
}
391
391
392
392
public
void
onSuccessfulReconnect
()
{
393
-
callback
.
onSuccessfulReconnect
();
393
+
if
(
callback
!=
null
)
{
394
+
callback
.
onSuccessfulReconnect
();
395
+
}
394
396
}
395
397
396
398
...
...