aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2020-06-03 19:46:53 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2020-06-03 19:46:53 +0200
commit3528aeee325312ec1668cb614ec3e4e1424b7f99 (patch)
tree3f20658019d09fe14579f3c34a79b5d49982dbbf /uncompressed
parentMerge pull request #171 from tfehren/master (diff)
parentRepackage #194 (diff)
downloadferdium-recipes-3528aeee325312ec1668cb614ec3e4e1424b7f99.tar.gz
ferdium-recipes-3528aeee325312ec1668cb614ec3e4e1424b7f99.tar.zst
ferdium-recipes-3528aeee325312ec1668cb614ec3e4e1424b7f99.zip
Merge branch 'pr/194'
Diffstat (limited to 'uncompressed')
-rw-r--r--uncompressed/gmail/index.js16
-rw-r--r--uncompressed/gmail/package.json2
2 files changed, 12 insertions, 6 deletions
diff --git a/uncompressed/gmail/index.js b/uncompressed/gmail/index.js
index 4087aa3..60f0971 100644
--- a/uncompressed/gmail/index.js
+++ b/uncompressed/gmail/index.js
@@ -2,10 +2,16 @@ var os = require('os')
2 2
3module.exports = Franz => 3module.exports = Franz =>
4 class Gmail extends Franz { 4 class Gmail extends Franz {
5 overrideUserAgent() { 5 modifyRequestHeaders() {
6 if (os.platform() == 'linux') 6 return [
7 return "Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0" 7 {
8 else 8 headers: {
9 return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:72.0) Gecko/20100101 Firefox/72.0"; 9 'user-agent': window.navigator.userAgent.replace(/(Ferdi|Electron)\/\S+ \([^)]+\)/g,"").trim(),
10 },
11 requestFilters: {
12 urls: ['*://*/*'],
13 }
14 }
15 ]
10 } 16 }
11 }; 17 };
diff --git a/uncompressed/gmail/package.json b/uncompressed/gmail/package.json
index d7191e9..7e8c9ed 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.3.1", 4 "version": "1.3.3",
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>",