aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/googledrive
diff options
context:
space:
mode:
authorLibravatar Tomas Popela <tomas.popela@gmail.com>2020-04-01 08:34:45 +0200
committerLibravatar Tomas Popela <tomas.popela@gmail.com>2020-04-02 12:07:39 +0200
commit143583b74f69bb69ccddb6cb2fa7ae744bc76e72 (patch)
tree906ef68de7101d247c3fafb7369c6288a7e7f911 /uncompressed/googledrive
parentUpdate recipe_request.md (diff)
downloadferdium-recipes-143583b74f69bb69ccddb6cb2fa7ae744bc76e72.tar.gz
ferdium-recipes-143583b74f69bb69ccddb6cb2fa7ae744bc76e72.tar.zst
ferdium-recipes-143583b74f69bb69ccddb6cb2fa7ae744bc76e72.zip
Don't set Mac UA on Linux for Google services
If we set the Mac UA on Linux, then various shortcuts will change to Mac ones - i.e. Ctrl + K to create a link in GMail will stop work, Ctrl + Enter to send an email in GMail and others. Only set the Mac UA when not running on Linux.
Diffstat (limited to 'uncompressed/googledrive')
-rw-r--r--uncompressed/googledrive/index.js7
-rw-r--r--uncompressed/googledrive/package.json4
2 files changed, 8 insertions, 3 deletions
diff --git a/uncompressed/googledrive/index.js b/uncompressed/googledrive/index.js
index 3d2e725..9c4da64 100644
--- a/uncompressed/googledrive/index.js
+++ b/uncompressed/googledrive/index.js
@@ -1,6 +1,11 @@
1var os = require('os')
2
1module.exports = Franz => 3module.exports = Franz =>
2 class googledrive extends Franz { 4 class googledrive extends Franz {
3 overrideUserAgent() { 5 overrideUserAgent() {
4 return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:72.0) Gecko/20100101 Firefox/72.0"; 6 if (os.platform() == 'linux')
7 return "Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0"
8 else
9 return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:72.0) Gecko/20100101 Firefox/72.0";
5 } 10 }
6 }; 11 };
diff --git a/uncompressed/googledrive/package.json b/uncompressed/googledrive/package.json
index f741db5..5b97042 100644
--- a/uncompressed/googledrive/package.json
+++ b/uncompressed/googledrive/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "googledrive", 2 "id": "googledrive",
3 "name": "Google Drive", 3 "name": "Google Drive",
4 "version": "1.0.2", 4 "version": "1.0.3",
5 "description": "Google Drive", 5 "description": "Google Drive",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Djonathan Goulart<d.goulart@outlook.com.br>", 7 "author": "Djonathan Goulart<d.goulart@outlook.com.br>",
@@ -22,4 +22,4 @@
22 }, 22 },
23 "openDevTools": false 23 "openDevTools": false
24 } 24 }
25} \ No newline at end of file 25}