Maple Leafs’ Stolarz to back up Woll in Game 7 vs. Panthers
The Toronto Maple Leafs will have their top two goaltenders available for Sunday’s win-or-go-home Game 7 against the Florida Panthers. Sportsnet’s Elliotte Friedman reported shortly before puck drop that Anthony Stolarz will back up Joseph Woll on Sunday. Stolarz hasn’t dressed since Game 1 when he exited due to a couple of blows to the head. The 31-year-old left the series opener after taking an elbow to the head from Panthers forward Sam Bennett and a shot off the mask earlier in the game. It was a bit of a surprise to see Stolarz dressed for Game 7, as he didn’t take the team’s morning skate on Sunday and has yet to pracitse with the team since going to the hospital during Game 1. Despite Stolarz’s return, Woll will get the start for the sixth straight game in Round 2. Through his six appearances against the Panthers, Woll has posted a 3.28 goals-against average and a .893 save percentage. Woll is coming off his first career playoff shutout in Toronto’s 2-0 win over the Panthers in Game 6. You can watch Game 7 between the Maple Leafs and Panthers live on Sportsnet and Sportsnet+ starting at 7:30 p.m. ET / 4:30 p.m. PT. 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 ${gameDateFormatted} VS 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} Powered by ${gameDateFormatted} VS Powered by `; } // Example usage renderBetMGM('block_61dff599d73d851186ecfb824265813e', 'NHL', '62dc214e-a0f9-4e12-a204-74507a9a2116');

The Toronto Maple Leafs will have their top two goaltenders available for Sunday’s win-or-go-home Game 7 against the Florida Panthers.
Sportsnet’s Elliotte Friedman reported shortly before puck drop that Anthony Stolarz will back up Joseph Woll on Sunday.
Stolarz hasn’t dressed since Game 1 when he exited due to a couple of blows to the head. The 31-year-old left the series opener after taking an elbow to the head from Panthers forward Sam Bennett and a shot off the mask earlier in the game.
It was a bit of a surprise to see Stolarz dressed for Game 7, as he didn’t take the team’s morning skate on Sunday and has yet to pracitse with the team since going to the hospital during Game 1.
Despite Stolarz’s return, Woll will get the start for the sixth straight game in Round 2. Through his six appearances against the Panthers, Woll has posted a 3.28 goals-against average and a .893 save percentage.
Woll is coming off his first career playoff shutout in Toronto’s 2-0 win over the Panthers in Game 6.
You can watch Game 7 between the Maple Leafs and Panthers live on Sportsnet and Sportsnet+ starting at 7:30 p.m. ET / 4:30 p.m. PT.
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 = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_61dff599d73d851186ecfb824265813e', 'NHL', '62dc214e-a0f9-4e12-a204-74507a9a2116');