File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed
Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,10 @@ <h1 class="title">Module <code>slack_bolt.authorization.async_authorize</code></
222222
223223 if latest_installation.user_id != user_id:
224224 # First off, remove the user token as the installer is a different user
225+ user_token = None
225226 latest_installation.user_token = None
227+ latest_installation.user_refresh_token = None
228+ latest_installation.user_token_expires_at = None
226229 latest_installation.user_scopes = []
227230
228231 # try to fetch the request user's installation
@@ -594,7 +597,10 @@ <h3>Ancestors</h3>
594597
595598 if latest_installation.user_id != user_id:
596599 # First off, remove the user token as the installer is a different user
600+ user_token = None
597601 latest_installation.user_token = None
602+ latest_installation.user_refresh_token = None
603+ latest_installation.user_token_expires_at = None
598604 latest_installation.user_scopes = []
599605
600606 # try to fetch the request user's installation
Original file line number Diff line number Diff line change @@ -222,7 +222,10 @@ <h1 class="title">Module <code>slack_bolt.authorization.authorize</code></h1>
222222
223223 if latest_installation.user_id != user_id:
224224 # First off, remove the user token as the installer is a different user
225+ user_token = None
225226 latest_installation.user_token = None
227+ latest_installation.user_refresh_token = None
228+ latest_installation.user_token_expires_at = None
226229 latest_installation.user_scopes = []
227230
228231 # try to fetch the request user's installation
@@ -593,7 +596,10 @@ <h3>Ancestors</h3>
593596
594597 if latest_installation.user_id != user_id:
595598 # First off, remove the user token as the installer is a different user
599+ user_token = None
596600 latest_installation.user_token = None
601+ latest_installation.user_refresh_token = None
602+ latest_installation.user_token_expires_at = None
597603 latest_installation.user_scopes = []
598604
599605 # try to fetch the request user's installation
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_bolt.version</code></h1>
2828< span > Expand source code</ span >
2929</ summary >
3030< pre > < code class ="python "> """Check the latest version at https://pypi.org/project/slack-bolt/"""
31- __version__ = "1.11.3 "</ code > </ pre >
31+ __version__ = "1.11.4 "</ code > </ pre >
3232</ details >
3333</ section >
3434< section >
Original file line number Diff line number Diff line change 11"""Check the latest version at https://pypi.org/project/slack-bolt/"""
2- __version__ = "1.11.3 "
2+ __version__ = "1.11.4 "
You can’t perform that action at this time.
0 commit comments