Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors in the logs while moving to a view with a live camera stream #16776

Closed
3 tasks done
luca-angemi opened this issue Jun 5, 2023 · 37 comments · Fixed by #16878
Closed
3 tasks done

Errors in the logs while moving to a view with a live camera stream #16776

luca-angemi opened this issue Jun 5, 2023 · 37 comments · Fixed by #16878
Milestone

Comments

@luca-angemi
Copy link
Contributor

Checklist

  • I have updated to the latest available Home Assistant version.
  • I have cleared the cache of my browser.
  • I have tried a different browser to see if it is related to my browser.

Describe the issue you are experiencing

Every time I move to a view with a live camera stream I get this kind of errors in the logs.

2023-06-05 13:03:32.909 ERROR (MainThread) [frontend.js.latest.202306011] blob:http://192.168.1.37:8123/00a4d41e-59f4-4181-99c2-f775d8639b6a:1:100 Uncaught ReferenceError: t is not defined
2023-06-05 13:04:04.243 ERROR (MainThread) [frontend.js.latest.202306011] blob:http://192.168.1.37:8123/49851a3f-1bde-4d17-8ad1-2926897370ef:1:100 Uncaught ReferenceError: t is not defined

Describe the behavior you expected

Not showing errors.

Steps to reproduce the issue

...

What version of Home Assistant Core has the issue?

2023.6.0b4

What was the last working version of Home Assistant Core?

No response

In which browser are you experiencing the issue with?

No response

Which operating system are you using to run this browser?

No response

State of relevant entities

No response

Problem-relevant frontend configuration

No response

Javascript errors shown in your browser console/inspector

No response

Additional information

No response

@balloob balloob added this to the 2023.6 milestone Jun 5, 2023
@piitaya
Copy link
Member

piitaya commented Jun 5, 2023

Can you share information about how to reproduce it? I tested with a camera entity in a picture-entity card and I have no issues.

@luca-angemi
Copy link
Contributor Author

luca-angemi commented Jun 5, 2023

Apologies, it was really poorly described.

It's a picture-element card with the image as the live view of a camera.

  - type: picture-elements
    camera_image: camera.door
    elements:
      - type: state-label
...

@piitaya
Copy link
Member

piitaya commented Jun 5, 2023

Unable to reproduce 😕

@luca-angemi
Copy link
Contributor Author

luca-angemi commented Jun 5, 2023

Could you please try using this config? Basically where an element of the card is the camera itself.

type: picture-elements
elements:
  - type: state-icon
    entity: camera.door
    style:
      color: white
      top: 10%
      left: 93%
camera_image: camera.door

@bramkragten
Copy link
Member

Can you share the error from your browser console instead of the Home Assistant logs?

@luca-angemi
Copy link
Contributor Author

Should be this one

camera.door:1     GET https://xxxxxxx.duckdns.org/api/camera_proxy/camera.door?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxYzk2OTAwZDE0MzM0MmRkYWYwYzI4NmVhNDgwNjc5MSIsInBhdGgiOiIvYXBpL2NhbWVyYV9wcm94eS9jYW1lcmEuZG9vciIsInBhcmFtcyI6W10sImlhdCI6MTY4NTk3OTM5NCwiZXhwIjoxNjg1OTc5NDI0fQ.LeezYQ0hUUyOHjgAtYlUO3-F8IoqfXTeubF-s-pwQCc&width=300&height=0 403

@RobertD502
Copy link

RobertD502 commented Jun 5, 2023

I can confirm this has been happening with my cameras as well. For clarification, I thought this was only happening with ONVIF streams. However, when I disabled the ONVIF integration and used camera entities created by the Reolink integration, the same error was being logged in Home Assistant.

Example picture-entity YAML code:

show_state: false
show_name: true
camera_view: live
type: picture-entity
entity: camera.backyard_deck

Nothing regarding the camera streams is being logged in the browser console. In fact, the networking tab shows a 200 response code for all 4 streams:
image

Edit: This has been happening since 2023.6.0b0

@luca-angemi
Copy link
Contributor Author

In my case I use the generic camera integration.

@bramkragten
Copy link
Member

Please go to the console tab instead of the network tab if your browser dev tools, it should show the error

@RobertD502
Copy link

RobertD502 commented Jun 5, 2023

Please go to the console tab instead of the network tab if your browser dev tools, it should show the error

Sorry I didn't word that correctly - nothing related to the cameras shows up in the console tab. The network tab mentioned was just another portion I was sharing.

Edit: Console below

image

@RobertD502
Copy link

Update! I left the page up for a while and eventually this was logged in the console:

image

@bramkragten
Copy link
Member

bramkragten commented Jun 6, 2023

Mmmm that one seems unrelated

@luca-angemi
Copy link
Contributor Author

I've no custom cards and the error is pretty much the same. A weird 403 error.

@bramkragten
Copy link
Member

bramkragten commented Jun 6, 2023

this fixes the 403, #16795 , but I don't think it fixes the first error reported, which looks like a custom card issue to me.

@RobertD502
Copy link

this fixes the 403, #16795 , but I don't think it fixes the first error reported, which looks like a custom card issue to me.

None of the cameras are in custom cards. With the error originating from camera entities, I don't believe it is connected to custom cards.

@piitaya
Copy link
Member

piitaya commented Jun 6, 2023

@RobertD502 The issue you shared will be fixed with #16795. Bram talk about the first error ReferenceError: t is not defined

@luca-angemi
Copy link
Contributor Author

Hi Paul, Bram,

I think I managed to isolate the case where the error appears.

I don't have any custom card whatsoever.

image

I created a TEST tab with only a picture-entity card (same happens with picture-elements).

If this param is set to Auto then no error appears.

image

As soon as you select live and move between tabs then an error appears in the logs:

2023-06-06 19:16:36.997 ERROR (MainThread) [frontend.js.latest.202306050] blob:https://xxxxxxx.duckdns.org/83243631-4bb5-4f45-a949-cf1bea412fbe:1:100 Uncaught ReferenceError: t is not defined

@RobertD502
Copy link

RobertD502 commented Jun 6, 2023

@RobertD502 The issue you shared will be fixed with #16795. Bram talk about the first error ReferenceError: t is not defined

That is the same issue that I am facing as well (ReferenceError: t is not defined), which is why I was chiming in on this issue.

Edit:

Just to be clear:
I am facing the exact same issue as @luca-angemi:

Logger: frontend.js.latest.202306050
Source: components/system_log/__init__.py:257
First occurred: 3:58:20 PM (4 occurrences)
Last logged: 3:58:20 PM

blob:http://192.168.1.21:8123/eb4babaa-c136-4b23-9f9c-8a3024c67a43:1:100 Uncaught ReferenceError: t is not defined
blob:http://192.168.1.21:8123/32680e34-78ee-4424-b0b4-0f76afda403a:1:100 Uncaught ReferenceError: t is not defined
blob:http://192.168.1.21:8123/02ec3efe-d1b1-49f6-be62-56aff4a642a2:1:100 Uncaught ReferenceError: t is not defined
blob:http://192.168.1.21:8123/5351ab69-1d20-4bba-81b9-929873b0ff82:1:100 Uncaught ReferenceError: t is not defined

My cameras are in regular picture-entity cards. So, I was saying that this error can't be related to custom cards.

The 403 error was just something that popped up in the browser console and not something that was causing functional problems or was being logged in the HA logs. However, I do appreciate that getting fixed.

Regarding @luca-angemi's findings above. I can confirm that the ReferenceError is not logged when the picture-entity cards for my cameras are set to auto instead of live.

@luca-angemi
Copy link
Contributor Author

luca-angemi commented Jun 7, 2023

Hi all,

Tested in b6 and unfortunately both errors are logged the 403 error is indeed disappeared but the ReferenceError is still being logged.

2023-06-07 09:30:28.337 ERROR (MainThread) [frontend.js.latest.202306060] blob:https://xxxxxxx.duckdns.org/220da0bb-59e8-489f-8a09-ff4f8389f9ed:1:100 Uncaught ReferenceError: t is not defined
2023-06-07 09:30:39.958 ERROR (MainThread) [frontend.js.latest.202306060] blob:https://xxxxxxx.duckdns.org/9a0ec100-ffa5-478f-a60a-993286666110:1:100 Uncaught ReferenceError: t is not defined

@sdotter
Copy link
Contributor

sdotter commented Jun 7, 2023

Ive just updated to 2023.07 and got some errors:
2023-06-07 22:56:36.226 ERROR (MainThread) [frontend.js.latest.202306070] blob:https://rpi-hassio/352e03db-e290-4aa1-a756-3cd9e00e6254:1:100 Uncaught ReferenceError: t is not defined
2023-06-07 22:56:36.235 ERROR (MainThread) [frontend.js.latest.202306070] blob:https://rpi-hassio/80c4108a-918e-4277-ac62-e255d62d0ad4:1:100 Uncaught ReferenceError: t is not defined
2023-06-07 22:56:36.237 ERROR (MainThread) [frontend.js.latest.202306070] blob:https://rpi-hassio/8dc98970-08b8-427e-803d-6defd694f763:1:100 Uncaught ReferenceError: t is not defined
2023-06-07 22:56:36.245 ERROR (MainThread) [frontend.js.latest.202306070] blob:https://rpi-hassio/0d972d99-d7cc-401d-a768-432e5ee63cc9:1:100 Uncaught ReferenceError: t is not defined
2023-06-07 22:56:43.162 ERROR (MainThread) [frontend.js.latest.202306070] blob:https://rpi-hassio/ea62ff0e-b4f9-4a17-a102-7c9000d20b4f:1:100 Uncaught ReferenceError: t is not defined

I removed all custom (custom cards) stuff and still those errors popping up

@piitaya
Copy link
Member

piitaya commented Jun 7, 2023

Can you share browser logs (accessible in the browser console) instead of HA logs?

@sdotter
Copy link
Contributor

sdotter commented Jun 7, 2023

yeah sure... one sec

image

One of them:

DevTools failed to load source map: Could not load content for chrome-extension://gighmmpiobklfepjocnamgkkbiglidom/browser-polyfill.js.map: System error: net::ERR_FILE_NOT_FOUND load-resources.ts:35 Unknown resource type specified: undefined (anonymous) @ load-resources.ts:35 n @ load-resources.ts:12 (anonymous) @ ha-panel-lovelace.ts:235 Promise.then (async) value @ ha-panel-lovelace.ts:233 value @ ha-panel-lovelace.ts:153 _$AE @ reactive-element.ts:1378 performUpdate @ reactive-element.ts:1345 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 o @ ha-panel-lovelace.ts:66 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 value @ hass-router-page.ts:296 value @ hass-router-page.ts:316 _currentLoadProm.d.then._currentLoadProm @ hass-router-page.ts:214 Promise.then (async) value @ hass-router-page.ts:205 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 r @ hass-router-page.ts:48 o @ partial-panel-resolver.ts:44 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 a @ home-assistant-main.ts:52 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 value @ home-assistant.ts:33 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ home-assistant.ts:207 await in value (async) value @ home-assistant.ts:78 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ hass-base-mixin.ts:56 _updateHass @ context-mixin.ts:95 (anonymous) @ connection-mixin.ts:239 s @ store.js:19 (anonymous) @ collection.js:25 Promise.then (async) c @ collection.js:25 d @ collection.js:27 (anonymous) @ collection.js:52 subscribe @ collection.js:95 S @ config.js:16 (anonymous) @ core.ts:118 Promise.then (async) (anonymous) @ core.ts:113 (anonymous) @ core-pD34-Ju9mXI.js:1 (anonymous) @ core-pD34-Ju9mXI.js:1 /www/traffic/:1 An iframe which has both allow-scripts and allow-same-origin for its sandbox attribute can escape its sandboxing. rpi-hassio/:1 An iframe which has both allow-scripts and allow-same-origin for its sandbox attribute can escape its sandboxing. DevTools failed to load source map: Could not load content for chrome-extension://gighmmpiobklfepjocnamgkkbiglidom/browser-polyfill.js.map: System error: net::ERR_FILE_NOT_FOUND DevTools failed to load source map: Could not load content for chrome-extension://gighmmpiobklfepjocnamgkkbiglidom/browser-polyfill.js.map: System error: net::ERR_FILE_NOT_FOUND camera.hikvision:1 GET https://rpi-hassio/api/camera_proxy/camera.hikvision?authSig=eyJhbGciOjg2MTc0OY9EpWQO7TK-p_1M&width=366&height=0 500 Image (async) j @ lit-html.ts:1875 _$AI @ lit-html.ts:1817 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 a @ ha-hls-player.ts:22 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ ha-camera-stream.ts:161 await in value (async) value @ ha-camera-stream.ts:64 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 i @ ha-camera-stream.ts:27 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 i @ hui-image.ts:38 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 t @ hui-picture-glance-card.ts:38 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 window.CustomElementRegistry.upgrade @ scoped-custom-element-registry.js:111 (anonymous) @ create-element-base.ts:147 Promise.then (async) (anonymous) @ create-element-base.ts:145 h @ create-element-base.ts:238 c @ create-element-base.ts:172 k @ create-card-element.ts:98 value @ hui-stack-card.ts:102 (anonymous) @ hui-stack-card.ts:47 value @ hui-stack-card.ts:46 (anonymous) @ create-element-base.ts:149 Promise.then (async) (anonymous) @ create-element-base.ts:145 h @ create-element-base.ts:238 c @ create-element-base.ts:172 k @ create-card-element.ts:98 value @ hui-view.ts:64 (anonymous) @ hui-view.ts:283 value @ hui-view.ts:282 value @ hui-view.ts:216 value @ hui-view.ts:130 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 i @ hui-view.ts:43 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 value @ hui-root.ts:926 (anonymous) @ hui-root.ts:670 setTimeout (async) (anonymous) @ render-status.ts:2 requestAnimationFrame (async) r @ render-status.ts:2 value @ hui-root.ts:670 _$AE @ reactive-element.ts:1380 performUpdate @ reactive-element.ts:1345 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 o @ hui-root.ts:99 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ ha-panel-lovelace.ts:292 await in value (async) value @ ha-panel-lovelace.ts:153 _$AE @ reactive-element.ts:1378 performUpdate @ reactive-element.ts:1345 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 o @ ha-panel-lovelace.ts:66 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 value @ hass-router-page.ts:296 value @ hass-router-page.ts:316 _currentLoadProm.d.then._currentLoadProm @ hass-router-page.ts:214 Promise.then (async) value @ hass-router-page.ts:205 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 r @ hass-router-page.ts:48 o @ partial-panel-resolver.ts:44 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 a @ home-assistant-main.ts:52 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 value @ home-assistant.ts:33 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ home-assistant.ts:207 await in value (async) value @ home-assistant.ts:78 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ hass-base-mixin.ts:56 _updateHass @ context-mixin.ts:95 (anonymous) @ connection-mixin.ts:239 s @ store.js:19 (anonymous) @ collection.js:25 Promise.then (async) c @ collection.js:25 d @ collection.js:27 (anonymous) @ collection.js:52 subscribe @ collection.js:95 S @ config.js:16 (anonymous) @ core.ts:118 Promise.then (async) (anonymous) @ core.ts:113 (anonymous) @ core-pD34-Ju9mXI.js:1 (anonymous) @ core-pD34-Ju9mXI.js:1 camera.ezviz_c2c_2:1 GET https://rpi-hassio/api/camera_proxy/camera.ezviz_c2c_2?authSig=eyJhb6YniyY2BwE9yxC7K5b0&width=366&height=0 500 Image (async) j @ lit-html.ts:1875 _$AI @ lit-html.ts:1817 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 a @ ha-hls-player.ts:22 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ ha-camera-stream.ts:161 await in value (async) value @ ha-camera-stream.ts:64 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 i @ ha-camera-stream.ts:27 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 i @ hui-image.ts:38 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 t @ hui-picture-glance-card.ts:38 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 window.CustomElementRegistry.upgrade @ scoped-custom-element-registry.js:111 (anonymous) @ create-element-base.ts:147 Promise.then (async) (anonymous) @ create-element-base.ts:145 h @ create-element-base.ts:238 c @ create-element-base.ts:172 k @ create-card-element.ts:98 value @ hui-stack-card.ts:102 (anonymous) @ hui-stack-card.ts:47 value @ hui-stack-card.ts:46 (anonymous) @ create-element-base.ts:149 Promise.then (async) (anonymous) @ create-element-base.ts:145 h @ create-element-base.ts:238 c @ create-element-base.ts:172 k @ create-card-element.ts:98 value @ hui-view.ts:64 (anonymous) @ hui-view.ts:283 value @ hui-view.ts:282 value @ hui-view.ts:216 value @ hui-view.ts:130 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 i @ hui-view.ts:43 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 value @ hui-root.ts:926 (anonymous) @ hui-root.ts:670 setTimeout (async) (anonymous) @ render-status.ts:2 requestAnimationFrame (async) r @ render-status.ts:2 value @ hui-root.ts:670 _$AE @ reactive-element.ts:1380 performUpdate @ reactive-element.ts:1345 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 o @ hui-root.ts:99 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ ha-panel-lovelace.ts:292 await in value (async) value @ ha-panel-lovelace.ts:153 _$AE @ reactive-element.ts:1378 performUpdate @ reactive-element.ts:1345 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 o @ ha-panel-lovelace.ts:66 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 value @ hass-router-page.ts:296 value @ hass-router-page.ts:316 _currentLoadProm.d.then._currentLoadProm @ hass-router-page.ts:214 Promise.then (async) value @ hass-router-page.ts:205 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 r @ hass-router-page.ts:48 o @ partial-panel-resolver.ts:44 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 a @ home-assistant-main.ts:52 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 value @ home-assistant.ts:33 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ home-assistant.ts:207 await in value (async) value @ home-assistant.ts:78 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ hass-base-mixin.ts:56 _updateHass @ context-mixin.ts:95 (anonymous) @ connection-mixin.ts:239 s @ store.js:19 (anonymous) @ collection.js:25 Promise.then (async) c @ collection.js:25 d @ collection.js:27 (anonymous) @ collection.js:52 subscribe @ collection.js:95 S @ config.js:16 (anonymous) @ core.ts:118 Promise.then (async) (anonymous) @ core.ts:113 (anonymous) @ core-pD34-Ju9mXI.js:1 (anonymous) @ core-pD34-Ju9mXI.js:1 camera.ezviz_c2c_1:1 GET https://rpi-hassio/api/camera_proxy/camera.ezviz_c2c_1?authSig=eyJhbGciMTY4NjE3NDk5M30.h9XDxn5FowR2qo7mD6JeVifvQb1dmENE&width=366&height=0 500 Image (async) j @ lit-html.ts:1875 _$AI @ lit-html.ts:1817 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 a @ ha-hls-player.ts:22 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ ha-camera-stream.ts:161 await in value (async) value @ ha-camera-stream.ts:64 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 i @ ha-camera-stream.ts:27 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 v @ lit-html.ts:1187 g @ lit-html.ts:1545 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 i @ hui-image.ts:38 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 t @ hui-picture-glance-card.ts:38 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 window.CustomElementRegistry.upgrade @ scoped-custom-element-registry.js:111 (anonymous) @ create-element-base.ts:147 Promise.then (async) (anonymous) @ create-element-base.ts:145 h @ create-element-base.ts:238 c @ create-element-base.ts:172 k @ create-card-element.ts:98 value @ hui-stack-card.ts:102 (anonymous) @ hui-stack-card.ts:47 value @ hui-stack-card.ts:46 (anonymous) @ create-element-base.ts:149 Promise.then (async) (anonymous) @ create-element-base.ts:145 h @ create-element-base.ts:238 c @ create-element-base.ts:172 k @ create-card-element.ts:98 value @ hui-view.ts:64 (anonymous) @ hui-view.ts:283 value @ hui-view.ts:282 value @ hui-view.ts:216 value @ hui-view.ts:130 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 i @ hui-view.ts:43 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 value @ hui-root.ts:926 (anonymous) @ hui-root.ts:670 setTimeout (async) (anonymous) @ render-status.ts:2 requestAnimationFrame (async) r @ render-status.ts:2 value @ hui-root.ts:670 _$AE @ reactive-element.ts:1380 performUpdate @ reactive-element.ts:1345 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 o @ hui-root.ts:99 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ ha-panel-lovelace.ts:292 await in value (async) value @ ha-panel-lovelace.ts:153 _$AE @ reactive-element.ts:1378 performUpdate @ reactive-element.ts:1345 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 o @ ha-panel-lovelace.ts:66 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 value @ hass-router-page.ts:296 value @ hass-router-page.ts:316 _currentLoadProm.d.then._currentLoadProm @ hass-router-page.ts:214 Promise.then (async) value @ hass-router-page.ts:205 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 r @ hass-router-page.ts:48 o @ partial-panel-resolver.ts:44 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 u @ reactive-element.ts:948 y @ reactive-element.ts:931 k @ lit-element.ts:115 a @ home-assistant-main.ts:52 E @ scoped-custom-element-registry.js:385 t @ scoped-custom-element-registry.js:236 u @ lit-html.ts:1124 g @ lit-html.ts:1535 _$AI @ lit-html.ts:1379 G @ lit-html.ts:2175 update @ lit-element.ts:165 value @ home-assistant.ts:33 performUpdate @ reactive-element.ts:1331 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ home-assistant.ts:207 await in value (async) value @ home-assistant.ts:78 performUpdate @ reactive-element.ts:1329 scheduleUpdate @ reactive-element.ts:1263 _$Ej @ reactive-element.ts:1235 await in _$Ej (async) requestUpdate @ reactive-element.ts:1210 set @ reactive-element.ts:726 value @ hass-base-mixin.ts:56 _updateHass @ context-mixin.ts:95 (anonymous) @ connection-mixin.ts:239 s @ store.js:19 (anonymous) @ collection.js:25 Promise.then (async) c @ collection.js:25 d @ collection.js:27 (anonymous) @ collection.js:52 subscribe @ collection.js:95 S @ config.js:16 (anonymous) @ core.ts:118 Promise.then (async) (anonymous) @ core.ts:113 (anonymous) @ core-pD34-Ju9mXI.js:1 (anonymous) @ core-pD34-Ju9mXI.js:1 DevTools failed to load source map: Could not load content for chrome-extension://gighmmpiobklfepjocnamgkkbiglidom/browser-polyfill.js.map: System error: net::ERR_FILE_NOT_FOUND

@Mariusthvdb
Copy link
Contributor

Mariusthvdb commented Jun 8, 2023

just as a pointer to a closed (was too late to bump it) issue I experienced:

#14136

maybe related?

@sdotter
Copy link
Contributor

sdotter commented Jun 8, 2023

Dankjewel! ga ik checken! 😂👍 (Thanks gonna check it out)

@tammeryousef1006
Copy link

tammeryousef1006 commented Jun 8, 2023

got similiar error with 2023.6 but cant figure what is this error related to

blob:http://192.168.68.60:8123/8e8a3d97-c362-46fc-9fdb-586694dd353d:1:100 Uncaught ReferenceError: t is not defined
11:51:13 PM – (ERROR) components/system_log/init.py - message first occurred at 11:51:07 PM and shows up 2 times

the camera live view cause this error

@sdotter
Copy link
Contributor

sdotter commented Jun 9, 2023

2023.06.01

2023-06-09 08:09:42.402 INFO (MainThread) [homeassistant.core] Starting Home Assistant
2023-06-09 08:10:20.614 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/e7705d01-d666-41c4-8db6-55be07fb9410:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:20.822 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/55c2e923-0997-475e-abda-91d5ec7c8216:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:20.831 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/ab2f8ce4-5722-4b6b-8caf-63ddcf601653:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:23.535 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/cb51fe3a-a55c-4c29-adde-a388a17dafed:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:23.545 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/fa427bc4-8416-4aa3-ba4a-5f2e089c889a:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:23.749 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/b2300d07-282d-40bd-98b6-4ebf836eb1b0:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:23.795 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/e1bbd216-8a3b-4ca0-b567-9ac26c8eaa62:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:28.048 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/2148a05b-5328-4e1a-b8a7-e13d3b4b01fb:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:29.564 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/dcc44c66-7625-4b39-afaa-33adb35d26fa:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:31.444 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/206afcdc-003f-4d24-9048-13655526a492:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:10:33.112 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/afb21231-db89-4133-a911-afdec9ae717a:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:14.583 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/75537424-3a64-4cdd-8186-6b0617f9ab0a:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:14.602 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/a9964dcf-9dc9-4396-82fe-702cfed7b845:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:14.605 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/0d1e5e88-153f-4d2d-a9fd-6312b8246188:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:14.607 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/2af08e53-7a44-4e62-8ce8-13f9b67552a3:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:19.250 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/75776ea7-a512-44b4-990e-0ca56aed7935:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:59.076 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/6b7f2636-1c09-4664-9aaa-c700804838b8:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:59.080 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/afc972ab-19d7-4519-a61a-e8239d9c3372:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:59.085 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/ef99d4ef-4fde-4481-91a1-4ad9a8e402b5:1:100 Uncaught ReferenceError: t is not defined
2023-06-09 08:11:59.089 ERROR (MainThread) [frontend.js.latest.202306080] blob:https://rpi-hassio/63b1428c-ce53-4bea-a88a-e8aa8add9047:1:100 Uncaught ReferenceError: t is not defined

@piitaya
Copy link
Member

piitaya commented Jun 9, 2023

Please only post browser logs (accessible with browser console). HA logs doesn't help.

@RobertD502
Copy link

RobertD502 commented Jun 9, 2023

Please only post browser logs (accessible with browser console). HA logs doesn't help.

@piitaya The issue is that there are no logs in the console related to the ReferenceError. See below:
ha log

image

As mentioned before, this error is only logged when the picture-entity card is set to live. Doesn't happen when it is set to auto.

@sdotter
Copy link
Contributor

sdotter commented Jun 10, 2023

it happened after 2023.6.0 (b4(?)) for me 2026.06 from wednesday

@tammeryousef1006
Copy link

any solution ?
as of now i avoid to open live view to prevent throwing errors at log

@luca-angemi
Copy link
Contributor Author

@tammeryousef1006

For the time being I added this to my config file to avoid logging.

logger:
  logs:
    frontend.js: critical

@sdotter
Copy link
Contributor

sdotter commented Jun 11, 2023

Thanks for sharing... Wanted to add it but had to figure out how. But this is the way 🥷

@NicoIIT
Copy link

NicoIIT commented Jun 11, 2023

I have the same issue while loading camera preview from 'Media->camera->my camera'. The frontend component being used seems to be "ha-camera-stream", the error occurring when the HLS stream is initialized / starting.

Console logs of the firefox web browser:

"""
ReferenceError: t is not defined 17e4720a-06dd-4cdd-8635-c2d3d4d8f93c:1:100
e blob:https://ha.xxxxxxxxx.duckdns.org/17e4720a-06dd-4cdd-8635-c2d3d4d8f93c:1
blob:https://ha.xxxxxxxxx.duckdns.org/17e4720a-06dd-4cdd-8635-c2d3d4d8f93c:1

InvalidStateError: An attempt was made to use an object that is not, or is no longer, usable worker.js:48

Tried to send a 'getTarget' method reply on an already destroyed actor 'workerDescriptor' Actor.js:206:21
sendReturn resource://devtools/shared/protocol/Actor.js:206
Error when attaching target: Error: Connection closed, pending request to server1.conn0.contentProcess14536/workerDescriptor8, type getTarget failed

Request stack:
request@resource://devtools/shared/protocol/Front.js:300:14
generateRequestMethods/</frontProto[name]@resource://devtools/shared/protocol/Front/FrontClassWithSpec.js:47:19
getTarget/this._attach<@resource://devtools/client/fronts/descriptors/worker.js:99:44
getTarget@resource://devtools/client/fronts/descriptors/worker.js:111:7
morphWorkerDescriptorIntoWorkerTarget@resource://devtools/client/fronts/descriptors/worker.js:75:17
_attachAndInitThread@resource://devtools/client/fronts/targets/target-mixin.js:400:20
attachAndInitThread@resource://devtools/client/fronts/targets/target-mixin.js:373:40
_onTargetAvailable@resource://devtools/shared/commands/target/target-command.js:228:25
_processNewWorkerTarget@resource://devtools/shared/commands/target/legacy-target-watchers/legacy-workers-watcher.js:134:18
_workerListChanged/promises<@resource://devtools/shared/commands/target/legacy-target-watchers/legacy-workers-watcher.js:110:12
_workerListChanged@resource://devtools/shared/commands/target/legacy-target-watchers/legacy-workers-watcher.js:109:30
baseFrontClassDestroy resource://devtools/shared/protocol/Front.js:106
destroy resource://devtools/client/fronts/descriptors/descriptor-mixin.js:52
_emit resource://devtools/shared/event-emitter.js:242
emit resource://devtools/shared/event-emitter.js:186
emit resource://devtools/shared/event-emitter.js:330
onPacket resource://devtools/shared/protocol/Front.js:349
onPacket resource://devtools/client/devtools-client.js:488
send resource://devtools/shared/transport/local-transport.js:67
makeInfallible resource://devtools/shared/ThreadSafeDevToolsUtils.js:103
makeInfallible resource://devtools/shared/ThreadSafeDevToolsUtils.js:103
target-command.js:230:15
_onTargetAvailable resource://devtools/shared/commands/target/target-command.js:230

"""

Hope it helps,
Rgds

@piitaya
Copy link
Member

piitaya commented Jun 11, 2023

@NicoIIT thank you for the logs!
Seems to be related to video-dev/hls.js#5484. We switched to esm version of hls for this release.

@NicoIIT
Copy link

NicoIIT commented Jun 11, 2023

arf I just found this one: video-dev/hls.js#5107 :)
and the change: 38cf774
@piitaya I can reproduce on demand, let me know if you need help to test a fix!

@khaisilk1910
Copy link

image
I have same issue with lastest HA

@RobertD502
Copy link

Is this planned to be a part of 2023.6.3?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

10 participants