diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2019-09-22 13:12:40 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2019-09-22 13:12:40 +0200 |
commit | e911f8029ca612d3b17ced300cdf5b6f13e20972 (patch) | |
tree | ad5e1bd123f116a13c208b0bf91573169371913f /src/versionChecker/index.js | |
parent | 1afb32f103bb7ebbc9ffa678ac6f5948a5ec54b1 (diff) | |
download | Luxcena-Neo-e911f8029ca612d3b17ced300cdf5b6f13e20972.tar.gz Luxcena-Neo-e911f8029ca612d3b17ced300cdf5b6f13e20972.zip |
:wrench: Make the hour-interval be actual hours not seconds
Diffstat (limited to 'src/versionChecker/index.js')
-rw-r--r-- | src/versionChecker/index.js | 2 |
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"]; |