Fix gpodder: add update_urls to episode actions POST response
All checks were successful
Build and push Docker image / build (push) Successful in 13s
Test / test (push) Successful in 16s

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:
marwin 2026-03-28 19:08:46 +01:00
parent a205eafd79
commit 44d51d3a7f

View file

@ -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')