diff --git a/thrimbletrimmer/src/restreamer/Restreamer.tsx b/thrimbletrimmer/src/restreamer/Restreamer.tsx index 1eccaca..d74c73d 100644 --- a/thrimbletrimmer/src/restreamer/Restreamer.tsx +++ b/thrimbletrimmer/src/restreamer/Restreamer.tsx @@ -1,6 +1,7 @@ import { Accessor, Component, + createEffect, createResource, createSignal, For, @@ -94,6 +95,11 @@ const RestreamerWithDefaults: Component = (props) => { streamEndTime: null, }); + createEffect(() => { + const info = streamVideoInfo(); + console.log(info); + }); + const videoURL = () => { const streamInfo = streamVideoInfo(); const startTime = wubloaderTimeFromDateTime(streamInfo.streamStartTime); @@ -117,6 +123,8 @@ const RestreamerWithDefaults: Component = (props) => { streamVideoInfo={streamVideoInfo} setStreamVideoInfo={setStreamVideoInfo} showTimeRangeLink={false} + errorList={props.errorList} + setErrorList={props.setErrorList} />