Prevent timeOffset delete timeout from holding app open

This commit is contained in:
Alex Corn 2020-05-28 00:15:20 -04:00
parent 3f99c718d4
commit d41a52638b
No known key found for this signature in database
GPG Key ID: E51989A3E7A27FDF

View File

@ -172,7 +172,7 @@ SteamCommunity.prototype.acceptConfirmationForObject = function(identitySecret,
setTimeout(function() {
// Delete the saved time offset after 12 hours because why not
delete self._timeOffset;
}, 1000 * 60 * 60 * 12);
}, 1000 * 60 * 60 * 12).unref();
});
}