Skip to content

Commit

Permalink
Display messages that only contain files and no text (#186)
Browse files Browse the repository at this point in the history
Messages that only contained files were not displayed
  • Loading branch information
MrMarkHayward authored Mar 28, 2024
1 parent 733f289 commit f5851dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slackviewer/templates/viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h3 id="mpim-title">Group Direct Messages</h3>
{% endif %}
<div class="messages">
{% for message in messages %}
{% if message.msg %}
{% if message.msg or message.files %}
{% if "Thread Reply:" in message.msg %}
{{render_message(message, None, no_external_references, reply=True)}}
{% else %}
Expand Down

0 comments on commit f5851dd

Please sign in to comment.