aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob Stendahl <jakob.stendahl@outlook.com>2019-09-22 13:12:40 +0200
committerJakob Stendahl <jakob.stendahl@outlook.com>2019-09-22 13:12:40 +0200
commite911f8029ca612d3b17ced300cdf5b6f13e20972 (patch)
treead5e1bd123f116a13c208b0bf91573169371913f /src
parent1afb32f103bb7ebbc9ffa678ac6f5948a5ec54b1 (diff)
downloadLuxcena-Neo-e911f8029ca612d3b17ced300cdf5b6f13e20972.tar.gz
Luxcena-Neo-e911f8029ca612d3b17ced300cdf5b6f13e20972.zip
:wrench: Make the hour-interval be actual hours not seconds
Diffstat (limited to 'src')
-rw-r--r--src/versionChecker/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/versionChecker/index.js b/src/versionChecker/index.js
index 69bf848..cee1486 100644
--- a/src/versionChecker/index.js
+++ b/src/versionChecker/index.js
@@ -11,7 +11,7 @@ class versionChecker {
this.version = this.CPackageJson["version"];
this.repoVersion = this.version;
- this.checkFrequency = this.config["checkInterval"] * 10 * 10; // takes in hours
+ this.checkFrequency = this.config["checkInterval"] * 100 * 10 * 60 * 60; // takes in hours
this.repoLink = this.CPackageJson["repository"]["url"];
this.repoBranch = this.config["branch"];