This commit is contained in:
johnataylor 2019-11-11 16:26:39 -08:00 коммит произвёл Chris Mullins
Родитель b885980d85
Коммит dd96b5be83
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -117,7 +117,7 @@ namespace Microsoft.Bot.Builder.Dialogs
// Trigger next step
_nextCalled = true;
return await _parentWaterfall.ResumeDialogAsync(this, DialogReason.NextCalled, result).ConfigureAwait(false);
return await _parentWaterfall.ResumeDialogAsync(this, DialogReason.NextCalled, result, cancellationToken).ConfigureAwait(false);
}
}
}