Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
albaintor committed Apr 27, 2024
1 parent 68f7dba commit 3dfbcac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intg-kodi/kodi.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ async def is_fullscreen_video(self) -> bool:
try:
result = await self._kodi.call_method("Gui.GetProperties",
**{"properties": ["fullscreen"]})
if result["fullscreen"] and result["fullscreen"] == True:
if result["fullscreen"] and result["fullscreen"] is True:
return True
except Exception as ex:
_LOG.debug("Couldn't retrieve Kodi's window state %s", ex)
Expand Down

0 comments on commit 3dfbcac

Please sign in to comment.