Skip to content

Commit 798bd6d

Browse files
committed
Hotfixed strange bug where sometimes the
plugin would download all the project files for no reason at random.
1 parent d520ff8 commit 798bd6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function StartServer(){
161161
})
162162

163163
//user wants to download files from the webkit to our working station
164-
socket.on("downLoadDir", function(data){
164+
/*socket.on("downLoadDir", function(data){
165165
if(!madeAllowDownloadDecision){
166166
madeAllowDownloadDecision = true;
167167
allowDownload = true;
@@ -177,6 +177,6 @@ function StartServer(){
177177
fs.appendFileSync("./" + key, val, {flag: "w"})
178178
});
179179
}
180-
})
180+
})*/
181181
})
182182
}

0 commit comments

Comments
 (0)