aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/tiktok
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/tiktok')
-rw-r--r--recipes/tiktok/package.json2
-rw-r--r--recipes/tiktok/webview.js19
2 files changed, 14 insertions, 7 deletions
diff --git a/recipes/tiktok/package.json b/recipes/tiktok/package.json
index 5d8e794..a0018b1 100644
--- a/recipes/tiktok/package.json
+++ b/recipes/tiktok/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "tiktok", 2 "id": "tiktok",
3 "name": "Tiktok", 3 "name": "Tiktok",
4 "version": "1.0.0", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://tiktok.com" 7 "serviceURL": "https://tiktok.com"
diff --git a/recipes/tiktok/webview.js b/recipes/tiktok/webview.js
index 6f78019..d2bf2d0 100644
--- a/recipes/tiktok/webview.js
+++ b/recipes/tiktok/webview.js
@@ -1,16 +1,23 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) { 1function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj }; 2 return obj && obj.__esModule ? obj : { default: obj };
5} 3}
6 4
5const _path = _interopRequireDefault(require('path'));
6
7module.exports = Ferdium => { 7module.exports = Ferdium => {
8 const getMessages = () => { 8 const getMessages = () => {
9 const selNotifications = document.querySelector("div.tiktok-1b4xcc5-DivHeaderInboxContainer.e18kkhh40 > sup"); 9 const selNotifications = document.querySelector(
10 const selDM = document.querySelector("div.tiktok-1ibfxbr-DivMessageIconContainer.e1nx07zo0 > sup"); 10 'div.tiktok-1b4xcc5-DivHeaderInboxContainer.e18kkhh40 > sup',
11 );
12 const selDM = document.querySelector(
13 'div.tiktok-1ibfxbr-DivMessageIconContainer.e1nx07zo0 > sup',
14 );
11 15
12 const countNotifications = (selNotifications != null) ? Ferdium.safeParseInt(selNotifications.outerText) : 0; 16 const countNotifications =
13 const countDM = (selDM != null) ? Ferdium.safeParseInt(selDM.outerText) : 0; 17 selNotifications == null
18 ? 0
19 : Ferdium.safeParseInt(selNotifications.outerText);
20 const countDM = selDM == null ? 0 : Ferdium.safeParseInt(selDM.outerText);
14 21
15 const count = countNotifications + countDM; 22 const count = countNotifications + countDM;
16 23