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
// Due to an open issue in Chromium, readableStream.cancel() is never called when a user cancel the stream from Chromium's UI and the stream goes on even it's canceled.
104
99
// Instead, we monitor the pull() behavior from the readableStream called when the stream wants more data to write.
105
100
// If the stream doesn't pull for long enough time, chances are the stream is already canceled, so we stop the stream.
@@ -175,12 +170,6 @@ export default class TableSaver extends PureComponent<
// Due to an open issue in Chromium, readableStream.cancel() is never called when a user cancel the stream from Chromium's UI and the stream goes on even it's canceled.
185
174
// Instead, we monitor the pull() behavior from the readableStream called when the stream wants more data to write.
186
175
// If the stream doesn't pull for long enough time, chances are the stream is already canceled, so we stop the stream.
@@ -257,7 +246,7 @@ export default class TableSaver extends PureComponent<
0 commit comments