Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Corn
01217a3659 3.12.2 2015-12-02 22:38:59 -05:00
Alexander Corn
0e34bceb1f Only reset the polling timer if we have an interval set 2015-12-02 22:38:51 -05:00
2 changed files with 4 additions and 2 deletions

View File

@@ -245,7 +245,9 @@ SteamCommunity.prototype.checkConfirmations = function() {
});
function resetTimer() {
self._confirmationTimer = setTimeout(self.checkConfirmations.bind(self), self._confirmationPollInterval);
if(self._confirmationPollInterval) {
self._confirmationTimer = setTimeout(self.checkConfirmations.bind(self), self._confirmationPollInterval);
}
}
function handleNewConfirmation(conf, handleNumber) {

View File

@@ -1,6 +1,6 @@
{
"name": "steamcommunity",
"version": "3.12.1",
"version": "3.12.2",
"description": "Provides an interface for logging into and interacting with the Steam Community website",
"keywords": ["steam", "steam community"],
"homepage": "https://github.com/DoctorMcKay/node-steamcommunity",