# HG changeset patch # User koff # Date 1476058440 -10800 # Node ID b305c678923a8ab36f38923be7619053783bc09c # Parent 86187b01c4e0351502b97624dce3b57bafe6856e fixed error handling for chained actions diff -r 86187b01c4e0 -r b305c678923a Implab/ActionChainTaskBase.cs --- a/Implab/ActionChainTaskBase.cs Thu Sep 01 10:43:31 2016 +0300 +++ b/Implab/ActionChainTaskBase.cs Mon Oct 10 03:14:00 2016 +0300 @@ -50,7 +50,7 @@ p.On(SetResult, SetErrorInternal, SetCancelledInternal); CancellationRequested(p.Cancel); } catch (Exception err) { - SetErrorInternal(error); + SetErrorInternal(err); } } else { SetErrorInternal(error);