Logan Thompson joins Capitals for morning skate ahead of Game 4 vs. Canadiens
Will goaltender Logan Thompson return for Game 4 Sunday against the Montreal Canadiens or are the Washington Capitals just playing mind games?

Will goaltender Logan Thompson return for Game 4 Sunday against the Montreal Canadiens or are the Washington Capitals just playing mind games?
Thompson was on the ice for the team’s morning skate, although he was unavailable to speak to reporters because he “hasn’t been cleared yet,” according to Sportsnet’s Eric Engels.
The 28-year-old Thompson was injured during the third period of Game 3 Friday when teammate Dylan Strome crashed into him while Montreal’s Juraj Slafkovsky scored. Charlie Lindgren finished the game.
Strome said it was an “unfortunate break” as Thompson needed help skating off the ice and wasn’t putting any weight on his left skate.
Thompson was the second goaltender to leave the game after Canadiens starter Sam Montembeault departed during the second period with an apparent lower-body injury.
Jakub Dobes entered the game and made seven saves on eight shots to help Montreal earn the 6-3 victory.
Thompson, acquired from the Vegas Golden Knights last June, posted a 31-6-6 record, 2.49 goals-against average and .910 save percentage in 43 games during the regular season. He has a 2-1 record, 2.73 GAA and .917 save percentage in the playoffs.
Washington holds a 2-1 lead in the first-round series.
Watch Game 4 live on Sportsnet and Sportsnet+ starting at 6:30 p.m. ET / 3: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_586d376378d30882acb50f5e976a5709', 'NHL', '2ed7220b-ad49-4b3d-8b7c-08ba2ca3c041');