Skip to content

Commit

Permalink
Incorporate changes from stevenzyang's Pull Request SuperManifolds#200
Browse files Browse the repository at this point in the history
…"Fix 'load more comments' not working"
  • Loading branch information
JonRudnick committed Oct 20, 2019
1 parent 69d4be1 commit b1e94ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TypeScript/LoadMore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit b1e94ce

Please sign in to comment.