mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-15 03:20:16 +00:00
Merge pull request #413 from battleroy/battleroy/observable-extension-cancellation-token-forwarding
Fix cancellation token forwarding
This commit is contained in:
@@ -133,7 +133,7 @@ namespace Cysharp.Threading.Tasks
|
||||
{
|
||||
var self = (ToUniTaskObserver<T>)state;
|
||||
self.disposable.Dispose();
|
||||
self.promise.TrySetCanceled();
|
||||
self.promise.TrySetCanceled(self.cancellationToken);
|
||||
}
|
||||
|
||||
public void OnNext(T value)
|
||||
@@ -203,7 +203,7 @@ namespace Cysharp.Threading.Tasks
|
||||
{
|
||||
var self = (FirstValueToUniTaskObserver<T>)state;
|
||||
self.disposable.Dispose();
|
||||
self.promise.TrySetCanceled();
|
||||
self.promise.TrySetCanceled(self.cancellationToken);
|
||||
}
|
||||
|
||||
public void OnNext(T value)
|
||||
|
||||
Reference in New Issue
Block a user