Skip to content

Commit

Permalink
Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
hmmbob authored Jul 11, 2024
1 parent 4e2ac70 commit a0783df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom_components/webrtc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
HLS_COOKIE = "webrtc-hls-session"
HLS_SESSION = str(uuid.uuid4())


async def async_setup(hass: HomeAssistant, config: dict):
# 1. Serve lovelace card
path = Path(__file__).parent / "www"
Expand Down Expand Up @@ -342,4 +343,4 @@ async def get(self, request: web.Request, filename: str):
raise HTTPNotFound()

body = await r.read()
return web.Response(body=body, content_type=r.content_type)
return web.Response(body=body, content_type=r.content_type)

0 comments on commit a0783df

Please sign in to comment.