From 55b7b99e480e2c012b3d18fcee6efd3bc547d488 Mon Sep 17 00:00:00 2001 From: Kfir Dayan Date: Sun, 4 Feb 2024 13:00:14 +0200 Subject: [PATCH] ran tsc locally --- cron.log | 2 ++ dist/GameSource.js | 2 +- src/GameSource.ts | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cron.log b/cron.log index a7caf7e..3bc222a 100644 --- a/cron.log +++ b/cron.log @@ -4,3 +4,5 @@ 2024-02-04T10:31:00.825Z - END CRON JOB 2024-02-04T10:52:00.163Z - START CRON JOB 2024-02-04T10:52:03.334Z - END CRON JOB +2024-02-04T11:00:00.562Z - START CRON JOB +2024-02-04T11:00:03.403Z - END CRON JOB diff --git a/dist/GameSource.js b/dist/GameSource.js index 3f80ee8..e1796a8 100644 --- a/dist/GameSource.js +++ b/dist/GameSource.js @@ -11,7 +11,7 @@ const moment_1 = __importDefault(require("moment")); // require // search for upcomming games class GameSource { async getGamesFromHaifa() { - const sourceUrl = `http://mhaifafc.com/games?lang=en`; + const sourceUrl = `https://mhaifafc.com/games?lang=en`; console.log('Trying to get games from Haifa...'); try { const result = await axios_1.default.get(sourceUrl); diff --git a/src/GameSource.ts b/src/GameSource.ts index 93dec07..535e144 100644 --- a/src/GameSource.ts +++ b/src/GameSource.ts @@ -9,7 +9,7 @@ import moment from "moment"; // require export default class GameSource { async getGamesFromHaifa(): Promise { - const sourceUrl = `http://mhaifafc.com/games?lang=en`; + const sourceUrl = `https://mhaifafc.com/games?lang=en`; console.log('Trying to get games from Haifa...'); try { const result = await axios.get(sourceUrl);