Skip to content

Commit

Permalink
added server compiling with nexe
Browse files Browse the repository at this point in the history
  • Loading branch information
Mola19 committed May 16, 2021
1 parent d959f55 commit cac7b06
Show file tree
Hide file tree
Showing 5 changed files with 3,672 additions and 55 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
node_modules/

# service
daemon/
daemon/

#out
out/
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function start () {
}


let syncModes = JSON.parse(JSON.stringify(last.syncZones)) || {} // stupid solution to unlink vars
let syncModes = JSON.parse(JSON.stringify(last.syncZones || "{}")) // stupid solution to unlink vars

let directDevices = await getDirectDevices(client)

Expand Down
Loading

0 comments on commit cac7b06

Please sign in to comment.