From 4c607249faff38571234277e3b412d0d6d739725 Mon Sep 17 00:00:00 2001 From: janis Date: Mon, 7 Nov 2022 16:34:45 +0100 Subject: [PATCH] fixed typo --- projects/qrinsight.html | 2 +- testingserver.js | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/projects/qrinsight.html b/projects/qrinsight.html index 6979b01..6fb508b 100644 --- a/projects/qrinsight.html +++ b/projects/qrinsight.html @@ -15,7 +15,7 @@

Ever wanted to scan QR-Codes and Barcodes from a screenshot? This app allows you to do exactly that, whilst showing the full scanned link to you so you do not need to worry a little less about opening a harmful link.






This app is available to download now from the AppStore!
-Download form the Apple AppStore! +Download from the Apple AppStore! \ No newline at end of file diff --git a/testingserver.js b/testingserver.js index 0f270d9..20054b6 100644 --- a/testingserver.js +++ b/testingserver.js @@ -28,10 +28,6 @@ app.get('/projects/css/:file', (request, response) => { response.sendFile(path.join(__dirname + "/css/" + request.params.file)) }) -app.get('/test/test', (request, response) => { - response.send("THIS WORKS!") -}) - http.createServer( app