diff options
author | 0neGal <mail@0negal.com> | 2022-09-14 19:02:50 +0200 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-09-14 19:03:41 +0200 |
commit | 0c719656d99c69e11794b61a04e2fa31bbe5bb22 (patch) | |
tree | d84b966b7a6e0039285cf3621b7ad3d78b106fb7 | |
parent | 72e93deb5e65b67b71812c8ec983df5d2d85db2b (diff) | |
download | Viper-0c719656d99c69e11794b61a04e2fa31bbe5bb22.tar.gz Viper-0c719656d99c69e11794b61a04e2fa31bbe5bb22.zip |
renamed Viper requests cache file
"requests.json" is very vague, and going through your cache folder may
confuse you as to what program created the file, now it's way clearer.
-rw-r--r-- | src/extras/requests.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extras/requests.js b/src/extras/requests.js index 7509e9e..a5f3121 100644 --- a/src/extras/requests.js +++ b/src/extras/requests.js @@ -6,7 +6,7 @@ const lang = require("../lang"); // all requests results are stored in this file -const cachePath = path.join(app.getPath("cache"), "requests.json"); +const cachePath = path.join(app.getPath("cache"), "viper-requests.json"); const NORTHSTAR_LATEST_RELEASE_KEY = "nsLatestRelease"; const NORTHSTAR_RELEASE_NOTES_KEY = "nsReleaseNotes"; const VIPER_RELEASE_NOTES_KEY = "vpReleaseNotes"; |