Fix gpodder: add update_urls to episode actions POST response
AntennaPod's GpodnetEpisodeActionPostResponse expects update_urls in the episode upload response, not just timestamp. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a205eafd79
commit
44d51d3a7f
1 changed files with 1 additions and 1 deletions
|
|
@ -242,7 +242,7 @@ def episode_actions(request, username):
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
return JsonResponse({'timestamp': _now_ts()})
|
return JsonResponse({'timestamp': _now_ts(), 'update_urls': []})
|
||||||
|
|
||||||
elif request.method == 'GET':
|
elif request.method == 'GET':
|
||||||
since = request.GET.get('since')
|
since = request.GET.get('since')
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue