From b1e94cec69a41754ce4906be5f44c9efd4d7af96 Mon Sep 17 00:00:00 2001 From: JonRudnick Date: Sun, 20 Oct 2019 16:28:38 -0500 Subject: [PATCH] Incorporate changes from stevenzyang's Pull Request xlexi/alientube#200 "Fix 'load more comments' not working" --- TypeScript/LoadMore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TypeScript/LoadMore.ts b/TypeScript/LoadMore.ts index f4cb8ae..77722d8 100644 --- a/TypeScript/LoadMore.ts +++ b/TypeScript/LoadMore.ts @@ -46,7 +46,7 @@ module AlienTube { loadingText.classList.add("loading"); loadingText.textContent = Application.localisationManager.get("loading_generic_message"); - let generateRequestUrl = `https://api.reddit.com/r/${this.commentThread.threadInformation.subreddit}"/comments/${this.commentThread.threadInformation.id}/z/${this.data.id}.json`; + let generateRequestUrl = `https://api.reddit.com/r/${this.commentThread.threadInformation.subreddit}/comments/${this.commentThread.threadInformation.id}/z/${this.data.id}.json`; new HttpRequest(generateRequestUrl, RequestType.GET, function (responseData) { /* Remove "loading comments" text */