-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid posting an error on intentional end #172
Conversation
Commit 544e7e3 suppressed the exception, but it is still reported as an error. directLine.activity$ .filter(activity => activity.type === 'message') .subscribe( message => { console.log("received message ", message) directLine.end(); }, err => console.error // error is logged here );
Gentle ping |
ping? |
Hello? |
hi @orgads. thank you for your patience. we'll look to include this change with our next release. someone will review along with a currently active work-stream. cc @compulim @ckkashyap |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
I will add changelog in another PR.
It's now released at 0.11.5. https://github.com/microsoft/BotFramework-DirectLineJS/releases/tag/v0.11.5 |
Commit 544e7e3 suppressed the exception,
but it is still reported as an error.