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); } } });