From b91be29cec8500fd1221faae651b0d4930d92ad9 Mon Sep 17 00:00:00 2001 From: Timothy Lim Date: Tue, 20 Dec 2016 15:46:36 +0100 Subject: [PATCH] Add return statement to recursive function HFP-391 --- js/h5p.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/h5p.js b/js/h5p.js index 7e5c068..f493f06 100644 --- a/js/h5p.js +++ b/js/h5p.js @@ -1063,6 +1063,7 @@ H5P.findCopyrights = function (info, parameters, contentId) { } } else { + return; } } };