-
Notifications
You must be signed in to change notification settings - Fork 296
Updates to slack-adapter #1559
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
Updates to slack-adapter #1559
Conversation
I noticed in my tests that channel_id of a ConversationReference object (which is always "slack") is not the same as the channel ID that chat.delete API requires. |
@omid-jf Thanks! I'll take a look and apply the fixes. |
…rosoft/botbuilder-python into trboehre/slackadapter-update
): | ||
super().__init__(on_turn_error) | ||
self.slack_client = client | ||
self.slack_logged_in = False | ||
self.options = options if options else SlackAdapterOptions() |
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.
This is nitpicking but this could be changed to:
self.options = options or SlackAdapterOptions
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.
Approved with comments
Fixes #1548
There have been some some updates to the DotNet slack-adapter, and this PR includes most of those changes.