Update app.py
Browse files
app.py
CHANGED
|
@@ -1147,6 +1147,7 @@ def load_podcast_library_ui():
|
|
| 1147 |
style = podcast.get("metadata", {}).get("style", "Unknown")
|
| 1148 |
duration = podcast.get("metadata", {}).get("duration_minutes", "N/A")
|
| 1149 |
created = podcast.get("created_at", "Unknown")[:19] if podcast.get("created_at") else "Unknown"
|
|
|
|
| 1150 |
|
| 1151 |
gr.Markdown(
|
| 1152 |
f"**🎨 Style:** {style.title()} \n"
|
|
|
|
| 1147 |
style = podcast.get("metadata", {}).get("style", "Unknown")
|
| 1148 |
duration = podcast.get("metadata", {}).get("duration_minutes", "N/A")
|
| 1149 |
created = podcast.get("created_at", "Unknown")[:19] if podcast.get("created_at") else "Unknown"
|
| 1150 |
+
podcast_id = podcast.get("id") or podcast.get("podcast_id", "Unknown")
|
| 1151 |
|
| 1152 |
gr.Markdown(
|
| 1153 |
f"**🎨 Style:** {style.title()} \n"
|