Skip to content

Commit

Permalink
Added support for 'thread_broadcast' subtype, treating it as normal t…
Browse files Browse the repository at this point in the history
…hread child for now.
  • Loading branch information
lpilz committed Apr 3, 2020
1 parent 7234412 commit 77ac10a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/importer-slack/server/importer.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ export class SlackImporter extends Base {
});
}

if (message.subtype) {
if (message.subtype && (message.subtype !== 'thread_broadcast')) {
this.processMessageSubType(message, room, msgDataDefaults, missedTypes);
} else {
const user = this.getRocketUserFromUserId(message.user);
Expand Down

0 comments on commit 77ac10a

Please sign in to comment.