mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-17 01:50:47 -04:00
guhw
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -11,7 +11,7 @@
|
|||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||||
<meta name="apple-mobile-web-app-title" content="Multi Roomba Rover" />
|
<meta name="apple-mobile-web-app-title" content="Multi Roomba Rover" />
|
||||||
<title>Multi Roomba Rover</title>
|
<title>Multi Roomba Rover</title>
|
||||||
<script type="module" crossorigin src="/assets/index-7BkQjAbh.js"></script>
|
<script type="module" crossorigin src="/assets/index-DIyMMVJE.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/assets/index-BxUpjkzh.css">
|
<link rel="stylesheet" crossorigin href="/assets/index-BxUpjkzh.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -204,6 +204,16 @@ export default function VideoTile({
|
|||||||
: detail
|
: detail
|
||||||
? `${status} (${detail})`
|
? `${status} (${detail})`
|
||||||
: status;
|
: status;
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
useEffect(() => {
|
||||||
|
if (!audioSessionInfo?.url && !sessionInfo?.url) return;
|
||||||
|
console.info('VideoTile sessions', {
|
||||||
|
video: sessionInfo,
|
||||||
|
audio: audioSessionInfo,
|
||||||
|
status,
|
||||||
|
audioStatus,
|
||||||
|
});
|
||||||
|
}, [sessionInfo, audioSessionInfo, status, audioStatus]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-0.5">
|
<div className="flex flex-col gap-0.5">
|
||||||
|
|||||||
@@ -122,6 +122,8 @@ export function useVideoRequests(sourceList = []) {
|
|||||||
}
|
}
|
||||||
return next;
|
return next;
|
||||||
});
|
});
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.info('video:request ok', { entry, url: resp.url });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user