Skip to content

Commit

Permalink
Fix error being printed to console on Chrome when navigating UI
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjust committed Sep 21, 2024
1 parent 24fb6af commit 6df6c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion photon-client/src/components/app/photon-camera-stream.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const handleFullscreenRequest = () => {
const mjpgStream: any = ref(null);
onBeforeUnmount(() => {
if (!mjpgStream.value) return;
mjpgStream.value["src"] = null;
mjpgStream.value["src"] = "//:0";
});
</script>

Expand Down

0 comments on commit 6df6c8b

Please sign in to comment.