This commit is contained in:
Mann Patel
2026-02-15 11:21:29 -07:00
parent b9282a44c8
commit 1c60fae113
8 changed files with 221 additions and 201 deletions

View File

@@ -445,6 +445,10 @@ def api_get_post(post_id: int):
row = get_audio_post_by_id(post_id)
if not row:
return _error("Post not found.", 404)
# CRITICAL: Add audio URL to the response
row = _add_audio_url(row)
return jsonify(row)