Skip to content

Commit

Permalink
Built files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 11, 2021
1 parent 3010b2a commit d24a254
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension/oengus-import.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ function importSchedule(marathonShort, useJapanese) {
return __awaiter(this, void 0, void 0, function* () {
try {
importStatus.value.importing = true;
const marathonResp = yield get(`/marathon/${marathonShort}`);
const scheduleResp = yield get(`/marathon/${marathonShort}/schedule`);
const marathonResp = yield get(`/marathons/${marathonShort}`);
const scheduleResp = yield get(`/marathons/${marathonShort}/schedule`);
if (!isOengusMarathon(marathonResp.body)) {
throw new Error('Did not receive marathon data correctly');
}
Expand Down

0 comments on commit d24a254

Please sign in to comment.