Spaces:
Build error
Build error
CB commited on
Update streamlit_app.py
Browse files- streamlit_app.py +1 -1
streamlit_app.py
CHANGED
|
@@ -164,7 +164,7 @@ if st.session_state["url"]:
|
|
| 164 |
if st.session_state["videos"]:
|
| 165 |
|
| 166 |
try:
|
| 167 |
-
st.sidebar.video(st.session_state["videos"], loop=st.session_state.get("loop_video",
|
| 168 |
except Exception as e:
|
| 169 |
st.write("Couldn't show video")
|
| 170 |
|
|
|
|
| 164 |
if st.session_state["videos"]:
|
| 165 |
|
| 166 |
try:
|
| 167 |
+
st.sidebar.video(st.session_state["videos"], loop=st.session_state.get("loop_video", True))
|
| 168 |
except Exception as e:
|
| 169 |
st.write("Couldn't show video")
|
| 170 |
|