From 9c29fc6310ddd72e160ad6098f59f15fa87c37b1 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Thu, 9 Apr 2026 01:26:10 -0400 Subject: [PATCH] Fix formatting in index.js --- src/pkjs/index.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/pkjs/index.js b/src/pkjs/index.js index f1f8e6e..f5dbc22 100644 --- a/src/pkjs/index.js +++ b/src/pkjs/index.js @@ -11,11 +11,7 @@ Pebble.addEventListener("appmessage", function (dict) { // If someone with Plex Pass wants to give it a shot, I'd be happy to accept a PR adding this as an option. // Until then, I'm using Tautulli because it's free. //callAPI(dict.payload["API_HOST"] + "/status/sessions/history/all", true, dict.payload["API_KEY"]); - callAPI( - dict.payload["API_HOST"] + "/api/v2?apikey=" + dict.payload["API_KEY"] + "&cmd=get_history", - true, - NULL, - ); + callAPI(dict.payload["API_HOST"] + "/api/v2?apikey=" + dict.payload["API_KEY"] + "&cmd=get_history", true, NULL); } } });