Oilers tweaking lineup for Game 4, but sticking with Skinner in net
With the prospect of facing a 3-1 deficit against the Florida Panthers in the Stanley Cup Final for a second consecutive season, Edmonton Oilers head coach Kris Knoblauch is ready to shake things up.

With the prospect of facing a 3-1 deficit against the Florida Panthers in the Stanley Cup Final for a second consecutive season, Edmonton Oilers head coach Kris Knoblauch is ready to shake things up.
Forward Jeff Skinner and defenceman Troy Stecher will slot into the lineup for Thursday’s Game 4, replacing Victor Arvidsson and John Klingberg, respectively.
The pivotal matchup will be Skinner’s first playoff appearance for Edmonton since its Game 5 win over the Dallas Stars in the third round. He’s played in just two games during the Oilers’ post-season run thus far, logging a goal and an assist.
/* if ( "1" == true && 'undefined' !== typeof window.getIndexAds ) { var so = {preroll:{1:{1:{siteID:191888},2:{siteID:191889}}}}; adServerUrl = window.getIndexAds( 'http://pubads.g.doubleclick.net/gampad/ads?sz=640x360&cust_params=domain%3Dsportsnet.ca&iu=%2F7326%2Fen.sportsnet.web%2FVideo&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&ad_rule=1&vid=6374192835112&cmsid=384', so, permalink); } else { adServerUrl = "http://pubads.g.doubleclick.net/gampad/ads?sz=640x360&cust_params=domain%3Dsportsnet.ca&iu=%2F7326%2Fen.sportsnet.web%2FVideo&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&ad_rule=1&vid=6374192835112&cmsid=384"; } */ adServerUrl = "http://pubads.g.doubleclick.net/gampad/ads?sz=640x360&cust_params=domain%3Dsportsnet.ca&iu=%2F7326%2Fen.sportsnet.web%2FVideo&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&ad_rule=1&vid=6374192835112&cmsid=384"; /* var adServerUrl_result = adServerUrl.includes("cust_params"); var queryString=''; if(adServerUrl_result){ var gettheDUFI = false; if (localStorage.getItem("consent") !== null && localStorage.getItem("consent-targeting") !== null) gettheDUFI = localStorage.getItem("theRED_loc");
if(gettheDUFI){ queryString += "dufiid=" + gettheDUFI + '&'; queryString += "ppid=" + gettheDUFI + '&'; var ppid = "ppid=" + gettheDUFI + '&'; }
var DUFI_IP = false; if (localStorage.getItem("consent") !== null && localStorage.getItem("consent-targeting") !== null) DUFI_IP = sessionStorage.getItem("DUFI_IP");
if(DUFI_IP){ queryString += "dufiip=" + DUFI_IP + '&'; }
adServerUrl = adServerUrl.replace(/cust_params=/, ppid + 'cust_params=' + encodeURIComponent(queryString) ); } */
$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-442022" ).SNPlayer( { bc_account_id: "1704050871", bc_player_id: "JCdte3tMv", //autoplay: true, //is_has_autoplay_switch: false, bc_videos: 6374192835112, is_has_continuous_play: "false", adserverurl: adServerUrl, section: "", thumbnail: "https://www.sportsnet.ca/wp-content/uploads/2025/06/6374192835112-1024x576.jpg", direct_url: "https://www.sportsnet.ca/nhl/video/why-oilers-knoblauch-is-confident-with-skinner-heading-into-game-4/" }); });
Stecher will get his first reps in this year’s Cup Final on Thursday as well, after routinely filling in for Mattias Ekholm before the Swede returned to the lineup. Stecher is pointless through his six playoff appearances this season, but is a plus-three during that span.
Knoblauch also put his lines and defence pairings in the blender, including bumping Connor Brown up to play alongside Connor McDavid and Ryan Nugent-Hopkins. Stecher is poised to reunite with Darnell Nurse on the back end.
Nugent-Hopkins will dress after missing Monday’s practice with an upper-body injury.
Meanwhile, Knoblauch is opting to stick with Stuart Skinner in net despite his last performance raising some concerns. The 26-year-old let in five goals on the 23 shots he faced before getting pulled for Calvin Pickard late in the third period of what ended up as a 6-1 Game 3 loss for Edmonton.
Catch Game 4 action from Sunrise, Fla. on Sportsnet or Sportsnet+ at 8 p.m. ET / 5 p.m. PT.
— with files from The Canadian Press
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_8ef267f09a74fccc6f42c9769e92791e', 'NHL', '53ae3fc3-dd3c-4749-8b28-dedc363e8b5a');