aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2022-07-08 22:52:33 +0200
committer0neGal <mail@0negal.com>2022-07-08 22:52:33 +0200
commit9598c42c635f9e66d2224b160005afb9ba28e64a (patch)
treec7dd22bc67a13733daa39f9e0d82a4446406fd66
parentebf1dc97e8309bf3f68483e1045c29a39d76d797 (diff)
downloadViper-9598c42c635f9e66d2224b160005afb9ba28e64a.tar.gz
Viper-9598c42c635f9e66d2224b160005afb9ba28e64a.zip
fixed "_sendVersionsInfo()" not found
I removed the underscore at one point and forgot to change the name everywhere it seems.
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index 2c03529..148e30a 100644
--- a/src/index.js
+++ b/src/index.js
@@ -209,7 +209,7 @@ ipcMain.on("newpath", (event, newpath) => {
if (newpath === false && ! win.isVisible()) {
win.send("no-path-selected");
} else {
- _sendVersionsInfo();
+ sendVersionsInfo();
if (!win.isVisible()) {
win.show();
}