From d41a52638b18266f382010a0d82669bbf4126b44 Mon Sep 17 00:00:00 2001 From: Alex Corn Date: Thu, 28 May 2020 00:15:20 -0400 Subject: [PATCH] Prevent timeOffset delete timeout from holding app open --- components/confirmations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/confirmations.js b/components/confirmations.js index 66770cd..8c2a579 100644 --- a/components/confirmations.js +++ b/components/confirmations.js @@ -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(); }); }