diff --git a/js/h5p.js b/js/h5p.js index 1fd545c..4d61169 100644 --- a/js/h5p.js +++ b/js/h5p.js @@ -691,7 +691,11 @@ H5P.getPath = function (path, contentId) { var prefix; if (contentId !== undefined) { - prefix = H5PIntegration.url + '/content/' + contentId; + // Check for custom override URL + prefix = H5PIntegration.contents['cid-' + contentId].contentUrl; + if (!prefix) { + prefix = H5PIntegration.url + '/content/' + contentId; + } } else if (window.H5PEditor !== undefined) { prefix = H5PEditor.filesPath;