diff --git a/bigbluebutton/django/views.py b/bigbluebutton/django/views.py index fb0700bf079a7a56e211c1f680290df91e768240..81ca9b38726fc33f724e4fe9f4a3b10b325b616a 100644 --- a/bigbluebutton/django/views.py +++ b/bigbluebutton/django/views.py @@ -77,7 +77,7 @@ class APIView(View): ) -> HttpResponse: # Inject mandatory attributes res = attrs.copy() if attrs else {} - res.update(dict(reurncode=return_code, messageKey=message_key, message=message)) + res.update(dict(returncode=return_code, messageKey=message_key, message=message)) # Generate XML and prettify xml = dicttoxml(res, attr_type=False, custom_root="response")