Skip to content

Commit

Permalink
Merge pull request #12049 from rtibbles/my_name_is_url
Browse files Browse the repository at this point in the history
Fix URL handling regression
  • Loading branch information
marcellamaki authored Apr 3, 2024
2 parents 4f7ed2b + 6756572 commit fc83f79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kolibri/plugins/user_profile/viewsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get(self, request):

class RemoteFacilityUserAuthenticatedViewset(APIView):
def post(self, request, *args, **kwargs):
baseurl = request.query_params.get("baseurl", "")
baseurl = request.data.get("baseurl", "")
try:
validator(baseurl)
except DjangoValidationError as e:
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11552,7 +11552,7 @@ vue2-teleport@^1.0.1:
resolved "https://registry.yarnpkg.com/vue2-teleport/-/vue2-teleport-1.0.1.tgz#1b7f9f69c1223f522cf6cd81c39b8d6019e1cf66"
integrity sha512-hbY/Q0x8qXGFxo6h4KU4YYesUcN+uUjliqqC0PoNSgpcbS2QRb3qXi+7XMTgLYs0a8i7o1H6Mu43UV4Vbgkhgw==

vue@2.6.14, vue@^2.6.14:
vue@2.6.14:
version "2.6.14"
resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.14.tgz#e51aa5250250d569a3fbad3a8a5a687d6036e235"
integrity sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ==
Expand Down

0 comments on commit fc83f79

Please sign in to comment.