Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -68,7 +68,7 @@ if latest_ep_button:
|
|
68 |
st.sidebar.subheader("Available Podcasts Feeds")
|
69 |
selected_podcast = st.sidebar.selectbox("Select Podcast", options=podcast_five_titles,index=None,key='podcast_selection')
|
70 |
|
71 |
-
if selected_podcast:
|
72 |
|
73 |
if 'podcast_selection' not in st.session_state:
|
74 |
st.session_state.podcast_selection = selected_podcast
|
|
|
68 |
st.sidebar.subheader("Available Podcasts Feeds")
|
69 |
selected_podcast = st.sidebar.selectbox("Select Podcast", options=podcast_five_titles,index=None,key='podcast_selection')
|
70 |
|
71 |
+
if selected_podcast is not None:
|
72 |
|
73 |
if 'podcast_selection' not in st.session_state:
|
74 |
st.session_state.podcast_selection = selected_podcast
|