Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,15 +163,15 @@ class Replicate {
}

// We handle the cancel later in the function.
if (signal?.aborted) {
if (signal && signal.aborted) {
return true; // stop polling
}

return false; // continue polling
}
);

if (signal?.aborted) {
if (signal && signal.aborted) {
prediction = await this.predictions.cancel(prediction.id);
}

Expand Down