Oilers’ Leon Draisaitl doubtful vs. Jets, considered day-to-day

Leon Draisaitl’s chase for 50 goals may have to wait a little longer.

Mar 20, 2025 - 19:29
 0
Oilers’ Leon Draisaitl doubtful vs. Jets, considered day-to-day

Leon Draisaitl‘s chase for 50 goals may have to wait a little longer.

The Edmonton Oilers superstar forward is doubtful for Thursday’s outing against the league-leading Winnipeg Jets and is considered day-to-day moving forward, head coach Kris Knoblauch told reporters.

The nature of his injury is undisclosed. It’s unclear when he may have suffered his injury.

Knoblauch added that the team is being cautious with him moving forward as they look ahead to the playoffs.

Draisaitl has been on a tear this season and leads the league in goals with 49. He’s second in total points with 101, behind only Colorado Avalanche superstar Nathan MacKinnon.

The 29-year-old is well on pace to break his career-high of 55 goals, set in the 2021-22 season.

With 14 games left in the regular season, the Oilers sit second in the Pacific division with a 40-24-4 record. They’re two points behind the Vegas Golden Knights for the top spot.

The Oilers play host to the powerhouse Jets on Thursday night. Catch the action on Sportsnet West or stream on Sportsnet+.

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_698731b28bf318ae693cefc01855079d', 'nhl', 'a649a051-8f6d-4620-8be6-5311b194fa67');