aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2019-11-27 18:01:43 +0700
committerLibravatar Amine Mouafik <amine@mouafik.fr>2019-11-27 18:01:43 +0700
commitd7d80c0fbbe440f8f142327474f56c74e2df6c4a (patch)
treecba8c1f218746f9d86fc2c2ff4586df6ab858583
parentMerge branch 'master' of https://github.com/getferdi/recipes (diff)
downloadferdium-recipes-d7d80c0fbbe440f8f142327474f56c74e2df6c4a.tar.gz
ferdium-recipes-d7d80c0fbbe440f8f142327474f56c74e2df6c4a.tar.zst
ferdium-recipes-d7d80c0fbbe440f8f142327474f56c74e2df6c4a.zip
Override user agent in Gmail recipe
-rw-r--r--all.json2
-rw-r--r--gmail.tar.gzbin65356 -> 65061 bytes
-rw-r--r--uncompressed/gmail/index.js9
-rw-r--r--uncompressed/gmail/package.json2
4 files changed, 9 insertions, 4 deletions
diff --git a/all.json b/all.json
index 00f02da..dff6b36 100644
--- a/all.json
+++ b/all.json
@@ -136,7 +136,7 @@
136 "featured": false, 136 "featured": false,
137 "id": "gmail", 137 "id": "gmail",
138 "name": "Gmail", 138 "name": "Gmail",
139 "version": "1.2.0", 139 "version": "1.2.1",
140 "icons": { 140 "icons": {
141 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/uncompressed/gmail/icon.png", 141 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/uncompressed/gmail/icon.png",
142 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/uncompressed/gmail/icon.svg" 142 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/uncompressed/gmail/icon.svg"
diff --git a/gmail.tar.gz b/gmail.tar.gz
index 13eb348..96e6b12 100644
--- a/gmail.tar.gz
+++ b/gmail.tar.gz
Binary files differ
diff --git a/uncompressed/gmail/index.js b/uncompressed/gmail/index.js
index 46f936f..4e648b3 100644
--- a/uncompressed/gmail/index.js
+++ b/uncompressed/gmail/index.js
@@ -1,2 +1,7 @@
1// just pass through Franz 1module.exports = Franz =>
2module.exports = Franz => Franz; 2 class Instagram extends Franz {
3 // Fixes
4 overrideUserAgent() {
5 return "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36";
6 }
7 };
diff --git a/uncompressed/gmail/package.json b/uncompressed/gmail/package.json
index 7546d19..f95bfbc 100644
--- a/uncompressed/gmail/package.json
+++ b/uncompressed/gmail/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "gmail", 2 "id": "gmail",
3 "name": "Gmail", 3 "name": "Gmail",
4 "version": "1.2.0", 4 "version": "1.2.1",
5 "description": "Gmail", 5 "description": "Gmail",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Stefan Malzner <stefan@adlk.io>", 7 "author": "Stefan Malzner <stefan@adlk.io>",