Skip to content
Snippets Groups Projects
Commit d7b26d88 authored by rswindell's avatar rswindell
Browse files

Add backslash as necessary for "dir" key.

parent b6caef95
Branches
Tags
No related merge requests found
...@@ -594,7 +594,7 @@ engine = new (function() { ...@@ -594,7 +594,7 @@ engine = new (function() {
function Module(name, dir, read, write) { function Module(name, dir, read, write) {
this.online = true; this.online = true;
this.name = name; this.name = name;
this.dir = dir; this.dir = backslash(dir);
this.queue = undefined; this.queue = undefined;
this.commands = {}; this.commands = {};
this.read = read; this.read = read;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment