Remove debug line

This commit is contained in:
bingus_violet 2024-07-26 02:45:13 -05:00
parent ed931e1fac
commit 6057be570c

View file

@ -118,7 +118,6 @@ app.get("/download", async (req, res) => {
var files = fs.readdirSync(path.join(__dirname, 'downloads'))
for (let index = 0; index < files.length; index++) {
const file = files[index];
console.log(fileName)
if (file.includes(fileName)) {
fileName = file
filePath = path.join(__dirname, 'downloads', fileName)