From 0b6a92018db64045aca5b4f476deb8b6cf60329a Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Thu, 4 Aug 2022 14:51:11 -0500 Subject: [PATCH] Update README.md --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 4ca0c9b..5f865f1 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,7 @@ Examples Assume React Syntax The LoadPlexSession Function returns an object that contains the plexClientInformation and plexTVAuthToken keys/values according to how they were created ``` JavaScript const loadedSession = LoadPlexSession(); -if ( - loadedSession.plexClientInformation === null || - loadedSession.plexClientInformation === undefined -){ +if (loadedSession.plexClientInformation == null){ loadedSession.plexClientInformation = CreatePlexClientInformation(); }