Canadiens recall Cayden Primeau with Montembeault’s availability uncertain
The Montreal Canadiens have added some goaltender insurance ahead of Game 4 against the Washington Capitals. Goalie Cayden Primeau has been recalled from the Laval Rocket of the American Hockey League, the team announced Sunday morning.

The Montreal Canadiens have added some goaltender insurance ahead of Game 4 against the Washington Capitals.
Goalie Cayden Primeau has been recalled from the Laval Rocket of the American Hockey League, the team announced Sunday morning.
The move is in response to starting netminder Sam Montembeault‘s availability in question after he left Game 3 Friday with a lower-body injury.
Head coach Martin St. Louis said Saturday that Montembeault has not been ruled out for Game 4 and is still being evaluated.
If Montembeault is unavailable, Jakub Dobes is expected to get the start in net. Dobes stopped seven of the eight shots he faced in relief of Montembeault on Friday.
The 23-year-old enjoyed a solid rookie campaign, posting a 2.74 goals-against average and .909 save percentage in 16 games.
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_586d376378d30882acb50f5e976a5709', 'NHL', '2ed7220b-ad49-4b3d-8b7c-08ba2ca3c041');
Washington leads the series 2-1.
Puck drop for Game 4 is at 6:30 p.m. ET / 3:30 p.m. PT on Sportsnet and Sportsnet+.