Skip to content

Commit

Permalink
Merge branch 'master' into cli-remake-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
rusq committed Feb 15, 2023
2 parents a3db0e7 + d04beb8 commit 61248dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,13 @@ FAQ
Python application and runs in a browser. For the generic dump files, see
`examples`_ directory for some python and shell examples.

:Q: **My Slack Workspace is on the Free plan. Can I get data older than
90-days?**

:A: No, unfortunately you can't. Slack doesn't allow to export data older
than 90 days for free workspaces, the API does not return any data before 90
days for workspaces on the Free plan.

Thank you
=========
Big thanks to all contributors, who submitted a pull request, reported a bug,
Expand Down
2 changes: 1 addition & 1 deletion thread.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (*Session) populateThreads(
) (int, error) {
total := 0
for i := range msgs {
if msgs[i].ThreadTimestamp == "" {
if msgs[i].ThreadTimestamp == "" || msgs[i].SubType == "thread_broadcast" {
continue
}
threadMsgs, err := dumpFn(ctx, l, channelID, msgs[i].ThreadTimestamp, oldest, latest)
Expand Down

0 comments on commit 61248dc

Please sign in to comment.