aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/tiktok/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/tiktok/webview.js')
-rw-r--r--recipes/tiktok/webview.js19
1 files changed, 13 insertions, 6 deletions
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