Skip to content

Commit 38b3dae

Browse files
committed
Actually sending response statuses now pepega
1 parent e8de48b commit 38b3dae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ class VoteTrackerAPI {
215215

216216
this.emit("topgg", voteData)
217217

218-
res.status(200)
218+
res.status(200).send()
219219
});
220220
}
221221

@@ -234,7 +234,7 @@ class VoteTrackerAPI {
234234

235235
this.emit("dbl", voteData)
236236

237-
res.status(200)
237+
res.status(200).send()
238238
});
239239
}
240240

@@ -252,7 +252,7 @@ class VoteTrackerAPI {
252252

253253
this.emit("dboats", voteData)
254254

255-
res.status(200)
255+
res.status(200).send()
256256
});
257257
}
258258

@@ -269,7 +269,7 @@ class VoteTrackerAPI {
269269

270270
this.emit("bfd", voteData)
271271

272-
res.status(200)
272+
res.status(200).send()
273273
});
274274
}
275275

0 commit comments

Comments
 (0)