fix: Give media that is still loading a grace period before rebuilding (#2739)

- Related: #2718
This commit is contained in:
Dermot Duffy
2026-08-30 15:40:24 -07:00
committed by GitHub
parent 04c2da6379
commit bb6794ac49
11 changed files with 320 additions and 41 deletions
+1 -1
View File
@@ -141,7 +141,7 @@ export class IssueStateManager implements IssueReadOnlyState {
if (!force && !this._canRetryNow(issue)) {
continue;
}
if (issue.retry?.()) {
if (issue.retry?.(force)) {
return;
}
}