mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
Fixed script prefixes in absolute URLs
This commit is contained in:
@@ -71,12 +71,12 @@ def retry(request, order):
|
||||
"payment_method": "paypal",
|
||||
},
|
||||
"redirect_urls": {
|
||||
"return_url": build_absolute_uri(reverse('plugins:paypal:retry', kwargs={
|
||||
"return_url": build_absolute_uri('plugins:paypal:retry', kwargs={
|
||||
'order': order.code
|
||||
})),
|
||||
"cancel_url": build_absolute_uri(reverse('plugins:paypal:retry', kwargs={
|
||||
}),
|
||||
"cancel_url": build_absolute_uri('plugins:paypal:retry', kwargs={
|
||||
'order': order.code
|
||||
})),
|
||||
}),
|
||||
},
|
||||
"transactions": [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user