aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2020-02-22 02:56:03 +0100
committerLibravatar Amine Mouafik <amine@mouafik.fr>2020-02-22 02:56:03 +0100
commit59fd4afe27bfd0a329e6739e057d6921b8328d8a (patch)
tree67b5d238dfdb8575a43442f6edc75ae95a5523b7 /uncompressed
parentRemove unneeded workflows (diff)
downloadferdium-recipes-59fd4afe27bfd0a329e6739e057d6921b8328d8a.tar.gz
ferdium-recipes-59fd4afe27bfd0a329e6739e057d6921b8328d8a.tar.zst
ferdium-recipes-59fd4afe27bfd0a329e6739e057d6921b8328d8a.zip
Review Custom Website URL validation
Diffstat (limited to 'uncompressed')
-rw-r--r--uncompressed/franz-custom-website/index.js7
-rw-r--r--uncompressed/franz-custom-website/package.json2
2 files changed, 3 insertions, 6 deletions
diff --git a/uncompressed/franz-custom-website/index.js b/uncompressed/franz-custom-website/index.js
index 47da782..86c3227 100644
--- a/uncompressed/franz-custom-website/index.js
+++ b/uncompressed/franz-custom-website/index.js
@@ -4,12 +4,9 @@ module.exports = Franz => class CustomWebsite extends Franz {
4 async validateUrl(url) { 4 async validateUrl(url) {
5 try { 5 try {
6 const resp = await window.fetch(url, { 6 const resp = await window.fetch(url, {
7 method: 'GET', 7 method: 'GET'
8 headers: {
9 'Content-Type': 'application/json'
10 }
11 }); 8 });
12 return resp.status.toString().startsWith('2') || resp.status.toString().startsWith('3'); 9 return resp.status.toString().startsWith('2');
13 } catch (err) { 10 } catch (err) {
14 console.error(err); 11 console.error(err);
15 } 12 }
diff --git a/uncompressed/franz-custom-website/package.json b/uncompressed/franz-custom-website/package.json
index 6c40697..457a8a1 100644
--- a/uncompressed/franz-custom-website/package.json
+++ b/uncompressed/franz-custom-website/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "franz-custom-website", 2 "id": "franz-custom-website",
3 "name": "Custom Website", 3 "name": "Custom Website",
4 "version": "1.0.1", 4 "version": "1.0.2",
5 "description": "Add a custom website to Franz", 5 "description": "Add a custom website to Franz",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Stefan Malzner <stefan@adlk.io>", 7 "author": "Stefan Malzner <stefan@adlk.io>",