diff options
| author | Omni Worker <bot@omni.agent> | 2025-11-22 05:38:55 -0500 |
|---|---|---|
| committer | Omni Worker <bot@omni.agent> | 2025-11-22 05:38:55 -0500 |
| commit | df175988db8611779c7e7ed7fcdae5bd4edd57af (patch) | |
| tree | d62a6691f4ca02f3721a0f16cc474b01ddf4ce7f | |
| parent | 47e522081531a73c9f4f09e00f08add8ba427653 (diff) | |
Fix form method to POST for upgrade action
| -rw-r--r-- | Biz/PodcastItLater/UI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py index 94c5b81..226a7af 100644 --- a/Biz/PodcastItLater/UI.py +++ b/Biz/PodcastItLater/UI.py @@ -501,7 +501,7 @@ class PricingPage(Component[AnyChildren, PricingPageAttrs]): ], ), action="/upgrade", - attrs={"method": "get"}, # type: ignore[arg-type] + attrs={"method": "post"}, # type: ignore[arg-type] ) if user and current_tier == "free" else ( |
