Skip to content

Commit 629c74c

Browse files
committed
http -> https
1 parent 91fec38 commit 629c74c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/services/CurrentTeams.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ async function getFiveVFiveSeasons(): Promise<Array<{ name: string; id: number }
5858

5959
async function getFiveVFiveCurrentTeams({ name, id }: { name: string; id: number }): Promise<TeamInfo> {
6060
return (
61-
(await get(`http://snokinghockeyleague.com/api/team/list/${id}/0?v=1021270`)) as [
61+
(await get(`https://snokinghockeyleague.com/api/team/list/${id}/0?v=1021270`)) as [
6262
{
6363
name: string;
6464
divisionName: string;
@@ -76,7 +76,7 @@ async function getFiveVFiveCurrentTeams({ name, id }: { name: string; id: number
7676

7777
async function getPondSeasons(): Promise<Array<{ name: string; id: number }>> {
7878
return (
79-
(await get(`http://snokingpondhockey.com/api/season/all/0?v=1021270`)) as {
79+
(await get(`https://snokingpondhockey.com/api/season/all/0?v=1021270`)) as {
8080
seasons: [{ name: string; id: number }];
8181
}
8282
).seasons.map((x: { name: string; id: number }) => ({
@@ -91,7 +91,7 @@ async function getPondSeasonCurrentTeams(): Promise<
9191
const { id, name: seasonName } = (await getPondSeasons())[0];
9292

9393
return (
94-
(await get(`http://snokingpondhockey.com/api/team/list/${id}/0?v=1021270`)) as [
94+
(await get(`https://snokingpondhockey.com/api/team/list/${id}/0?v=1021270`)) as [
9595
{ name: string; divisionName: string; teamId: string; seasonId: string }
9696
]
9797
).map((x) => {

0 commit comments

Comments
 (0)