Skip to content

Commit

Permalink
fix(integrations): load double the number of slack channels (#24529)
Browse files Browse the repository at this point in the history
  • Loading branch information
thmsobrmlr authored Aug 23, 2024
1 parent 8d710d7 commit 7ff654c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/models/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def list_channels(self) -> list[dict]:
return sorted(channels, key=lambda x: x["name"])

def _list_channels_by_type(self, type: Literal["public_channel", "private_channel"]) -> list[dict]:
max_page = 10
max_page = 20
channels = []
cursor = None

Expand Down

0 comments on commit 7ff654c

Please sign in to comment.