Raptors’ Immanuel Quickley questionable for NBA Cup quarterfinal
The Toronto Raptors might have to try to stay alive in the NBA Cup without their starting point guard.
Immanuel Quickley is questionable to play in the quarterfinals against the New York Knicks on Tuesday due to illness, the team announced before the game.
Quickley, the former Knick, is averaging 16.5 points and 6.2 assists per game while making 38.2 per cent of his three-point attempts.
The 26-year-old was the lone bright spot in a November loss to New York, putting up 19 points and eight assists at Madison Square Garden.
Fellow point guard Jamal Shead is also questionable for the contest with a right quad contusion, while forward Jamison Battle is doubtful due to a left ankle sprain.
-
-
Watch Raptors vs. Knicks NBA Cup on Sportsnet
The Toronto Raptors host the New York Knicks in the quarterfinals of the NBA Cup on Tuesday. Watch live coverage of the knockout game on Sportsnet and Sportsnet+ beginning at 8 p.m. ET / 5 p.m. PT.
Toronto is already without Canadian wingman RJ Barrett (right knee sprain), who came to the Raptors with Quickley in the December 2023 trade that sent OG Anunoby the other way.
For the Knicks, star centre Karl-Anthony Towns is a game-time decision as he deals with a calf ailment.
The winner of Tuesday’s game will head to Las Vegas for the NBA Cup semifinals, where they’ll face the winner of a contest between the Miami Heat and Orlando Magic on Saturday.
The NBA Cup final is scheduled for Dec. 16.
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_4a2080d8114afed771928871845ba3a9', 'NBA', 'a6bd428f-4528-45db-b901-f1029c2f5fe8');
What's Your Reaction?
Like
0
Dislike
0
Love
0
Funny
0
Angry
0
Sad
0
Wow
0