Skip to content

Commit

Permalink
fix(billing): default to new plan for trial
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed May 6, 2024
1 parent b955f11 commit ac04af6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weblate/accounts/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def trial(request):
if not settings.OFFER_HOSTING:
return redirect("home")

plan = request.POST.get("plan", "enterprise")
plan = request.POST.get("plan", "640k")

# Avoid frequent requests for a trial for same user
if plan != "libre" and request.user.auditlog_set.filter(activity="trial").exists():
Expand Down

0 comments on commit ac04af6

Please sign in to comment.