Skip to content

Commit f28e8d4

Browse files
author
Max Presman
committed
compile
1 parent 047aed5 commit f28e8d4

File tree

7 files changed

+21
-6
lines changed

7 files changed

+21
-6
lines changed

dist/titanium/pubnub.js

+5
Original file line numberDiff line numberDiff line change
@@ -1677,6 +1677,11 @@ return /******/ (function(modules) { // webpackBootstrap
16771677
key: '_registerHeartbeatTimer',
16781678
value: function _registerHeartbeatTimer() {
16791679
this._stopHeartbeatTimer();
1680+
1681+
if (this._config.getHeartbeatInterval() === 0) {
1682+
return;
1683+
}
1684+
16801685
this._performHeartbeatLoop();
16811686
this._heartbeatTimer = setInterval(this._performHeartbeatLoop.bind(this), this._config.getHeartbeatInterval() * 1000);
16821687
}

dist/titanium/pubnub.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web/pubnub.js

+5
Original file line numberDiff line numberDiff line change
@@ -1699,6 +1699,11 @@ return /******/ (function(modules) { // webpackBootstrap
16991699
key: '_registerHeartbeatTimer',
17001700
value: function _registerHeartbeatTimer() {
17011701
this._stopHeartbeatTimer();
1702+
1703+
if (this._config.getHeartbeatInterval() === 0) {
1704+
return;
1705+
}
1706+
17021707
this._performHeartbeatLoop();
17031708
this._heartbeatTimer = setInterval(this._performHeartbeatLoop.bind(this), this._config.getHeartbeatInterval() * 1000);
17041709
}

dist/web/pubnub.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/subscription_manager.js

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/subscription_manager.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/networking/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)