summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js
index b08dd80..e1cb666 100644
--- a/src/main.js
+++ b/src/main.js
@@ -111,7 +111,7 @@ specify another socket path with --socket_path`
const unix_server = net.createServer((client) => {
client.on("data", (data) => {
- // 4096 byte limitation since we don't buffer here :3
+ // 4096 byte limitation since we don't buffer here
let body;
try {
body = JSON.parse(data);