@radiantabyss/vue 3.3.4 → 3.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Invoke.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@radiantabyss/vue",
3
- "version": "3.3.4",
3
+ "version": "3.3.5",
4
4
  "author": "radiantabyss.com",
5
5
  "license": "ISC",
6
6
  "eslintConfig": {
package/src/Invoke.js CHANGED
@@ -40,7 +40,7 @@ const invoke = async function(method, edge, payload = {}, display_errors = false
40
40
 
41
41
  try {
42
42
  delete payload._event;
43
- let data = await electron.IPC.invoke('invoke', {
43
+ let data = await IPC.invoke('invoke', {
44
44
  method,
45
45
  path: edge,
46
46
  payload: JSON.stringify(payload),