We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d030c60 + 7faa525 commit 8fa1cb6Copy full SHA for 8fa1cb6
formatters/html.rb
@@ -133,8 +133,8 @@ def format_dialog(dialog, messages)
133
last = msg['media']['last_name']
134
msg_body = "<div class=contact>Contact: #{first} <!--first-last-->#{last}, +#{phone}</div>"
135
end
136
- if msg['event'] == 'service' or msg['service'] or (message_count % timestamps_every == 0 and timestamps_every > 0)
137
- if message_count % timestamps_every == 0
+ if msg['event'] == 'service' or msg['service'] or (timestamps_every > 0 and message_count % timestamps_every == 0)
+ if timestamps_every > 0 and message_count % timestamps_every == 0
138
text = date_message
139
else
140
if get_full_name(msg['from']) != '' # Some messages have no properly filled 'from'
0 commit comments