From d821f343b4e19dba27aaf8523e337bbe0b17a03b Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Mon, 25 May 2026 16:30:03 -0400 Subject: [PATCH] Add missing semicolons in customClay.js --- src/pkjs/customClay.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pkjs/customClay.js b/src/pkjs/customClay.js index 9851d9c..1b4ddfb 100644 --- a/src/pkjs/customClay.js +++ b/src/pkjs/customClay.js @@ -8,11 +8,11 @@ module.exports = function (minified) { if (this.get()) { clayConfig.getItemById('helptext_host').set("Examples:
https://jellyfin.example.com
http://192.168.1.10:8096"); clayConfig.getItemById('helptext_api_key').set("1. Log into Jellyfin web UI as an admin
2. Go to your \"Dashboard\"
3. Select \"API Keys\" from the left menu
4. Create a key with \"New API Key\"; name it whatever you like and enter the key (not the name) in this box

The key will look like this:
d7f4c2e8a4b3444bb5d6b685fa5918b6"); - clayConfig.getItemById('helptext_user').set("Enter Jellyfin username to track;
this is used in case multiple users were active when you fell asleep") + clayConfig.getItemById('helptext_user').set("Enter Jellyfin username to track;
this is used in case multiple users were active when you fell asleep"); } else { clayConfig.getItemById('helptext_host').set("IMPORTANT:
Plex support requires installing Tautulli alongside Plex.
Enter the URL to your Tautulli instance, not Plex itself.

Examples:
https://tautulli.example.com
http://192.168.1.10:8181"); clayConfig.getItemById('helptext_api_key').set("1. Log into your Tautulli web UI (after initial configuration)
2. Go to settings
3. Select \"Web Interface\" from the left menu
4. At the bottom, ensure \"Enable API\" is checked
5. Reveal your API key; this is what goes in this box

The key will look like this:
9cb7053181cf4c8d807640f8c6a93b20"); - clayConfig.getItemById('helptext_user').set("Enter Plex username to track;
this is used in case multiple users were active when you fell asleep") + clayConfig.getItemById('helptext_user').set("Enter Plex username to track;
this is used in case multiple users were active when you fell asleep"); } }