Maple Leafs goaltender Anthony Stolarz to start vs. Bruins

19 hours ago 2

Rommie Analytics

Toronto Maple Leafs goaltender Anthony Stolarz will get the start in net against the Boston Bruins, Sportsnet’s Luke Fox reported on Tuesday.

Stolarz, who was scheduled to start against the Ottawa Senators on Saturday, was injured when a shot from teammate William Nylander struck him in the throat during warm-ups.

The Maple Leafs said that Stolarz went to the hospital for precautionary imaging and confirmed after the game that he had been released and cleared to fly home with the team.

Joseph Woll started in place of Stolarz and made 38 saves in a 5-2 loss. It was his fifth start in six games.

Stolarz has fallen into the back-up role recently with Woll getting hot. He last started on March 15 in a win over the Minnesota Wild.

$el.after( unescape("%3Cscript src=\"" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js\" %3E%3C/script%3E") );

$( document ).one( 'ready', function() { $( "#video_container-250294" ).SNPlayer( { bc_account_id: "1704050871", bc_player_id: "JCdte3tMv", //autoplay: true, //is_has_autoplay_switch: false, bc_videos: 6391541675112, is_has_continuous_play: "false", section: "", thumbnail: "https://www.sportsnet.ca/wp-content/uploads/2026/03/6391541675112-1024x576.jpg", direct_url: "https://www.sportsnet.ca/nhl/video/its-always-a-tough-game-berube-on-playing-in-and-against-boston/" }); });

The 32-year-old missed 33 games earlier this season with an upper-body injury.

Also returning to the lineup for Toronto are defencemen Oliver Ekman-Larsson and Morgan Rielly.

Ekman-Larsson was force to leave after just 15 minutes during Monday’s practice and Rielly missed Saturday’s contest with the Senators with a lower-body injury.

Calle Jarnkrok has been taken out of the lineup for Tuesday’s game in favour of Michael Pezzetta.

Toronto plays Boston Tuesday at 7 p.m. ET (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_6e5905e0e979f2bf7eea4dc3ff8f8ee5', 'NHL', '173dda89-044b-4f0a-9879-7eeb58100b72');

Read Entire Article