Skip to content

Commit

Permalink
Fix time
Browse files Browse the repository at this point in the history
  • Loading branch information
Hudson Brendon committed Jun 12, 2021
1 parent de5866b commit 4dbf191
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/clarotv/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "clarotv",
"name": "Claro TV",
"version": "0.1.1",
"version": "0.1.2",
"documentation": "https://github.com/hudsonbrendon/sensor.claro.com.br",
"dependencies": [],
"codeowners": ["@hudsonbrendon"],
Expand Down
4 changes: 2 additions & 2 deletions custom_components/clarotv/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ async def async_update(self):
title=programation["titulo"],
poster=self._channel_logo,
fanart=self._channel_logo,
runtime=programation["dh_inicio"].split("T")[1],
runtime=programation["dh_inicio"],
release="$date",
airdate=programation["dh_inicio"].split("T")[1],
airdate=programation["dh_inicio"],
)
)

Expand Down

0 comments on commit 4dbf191

Please sign in to comment.