mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 22:48:32 +00:00
7 lines
133 B
Python
7 lines
133 B
Python
def main(request, response):
|
|
if "full" in request.GET:
|
|
return request.url
|
|
else:
|
|
return request.request_path
|
|
|