You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `startIndex` for the `StreamFullScreenMediaBuilder` could potentially be -1 if the attachment is not found in the list.
This change ensures that `startIndex` is never negative by using `math.max(0, startIndex)`, preventing potential crashes.
0 commit comments