diff --git a/app/scripts/game-scraper.js b/app/scripts/game-scraper.js index 92a553b..24de34a 100644 --- a/app/scripts/game-scraper.js +++ b/app/scripts/game-scraper.js @@ -373,7 +373,7 @@ function extractGameHostingData(platform, text) { // Find the end of the container if (endIndex === -1) - text.indexOf(CONTAINER_SPAN_CLOSE, startIndex) + + endIndex = text.indexOf(CONTAINER_SPAN_CLOSE, startIndex) + CONTAINER_SPAN_CLOSE.length; text = text.substring(startIndex, endIndex);