tmpim / shitty.dl

Heavyweight featurecreep file hosting server in node.js
8 stars 3 forks source link

Paste and URL shortener error fixed #12

Closed Ale32bit closed 6 years ago

Ale32bit commented 6 years ago

Paste and URL shortener now return error 404 when their files don't exist.

Wojbie commented 6 years ago

Honestly i would do

if (!fs.existsSync(filePath))  return res.status(404).send("File not found");

instead of if () {} else {}

Lemmmy commented 6 years ago

thanksa lot!