Skip to content

Commit

Permalink
Fix clearWebstorage and clearCookies (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
tronikos authored Jun 11, 2024
1 parent 1706379 commit ec08261
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fullykiosk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ async def clearCache(self):
await self.sendCommand("clearCache")

async def clearWebstorage(self):
await self.clearWebstorage("clearWebstorage")
await self.sendCommand("clearWebstorage")

async def clearCookies(self):
await self.clearCookies("clearCookies")
await self.sendCommand("clearCookies")


class _RequestsHandler:
Expand Down

0 comments on commit ec08261

Please sign in to comment.