Skip to content
Snippets Groups Projects
Commit 77030e6c authored by Giovanni Cimolin da Silva's avatar Giovanni Cimolin da Silva Committed by Ned Batchelder
Browse files

fix: Deep Linking section displaying wrong data

parent 59855ab9
No related branches found
No related tags found
No related merge requests found
...@@ -112,7 +112,8 @@ def get_lti_1p3_launch_info(config_id=None, block=None): ...@@ -112,7 +112,8 @@ def get_lti_1p3_launch_info(config_id=None, block=None):
'oidc_callback': get_lms_lti_launch_link(), 'oidc_callback': get_lms_lti_launch_link(),
'token_url': get_lms_lti_access_token_link(lti_config.location), 'token_url': get_lms_lti_access_token_link(lti_config.location),
'deep_linking_launch_url': deep_linking_launch_url, 'deep_linking_launch_url': deep_linking_launch_url,
'deep_linking_content_items': json.dumps(deep_linking_content_items, indent=4), 'deep_linking_content_items':
json.dumps(deep_linking_content_items, indent=4) if deep_linking_content_items else None,
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment