Software /
code /
prosody-modules
Changeset
4437:09657f758f53
mod_pubsub_summary: Skip adding title if already part of summary
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 10 Feb 2021 16:06:30 +0100 |
parents | 4436:07529dba102d |
children | 4438:2bb11055e4bb |
files | mod_pubsub_summary/mod_pubsub_summary.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_pubsub_summary/mod_pubsub_summary.lua Wed Feb 10 16:05:14 2021 +0100 +++ b/mod_pubsub_summary/mod_pubsub_summary.lua Wed Feb 10 16:06:30 2021 +0100 @@ -31,7 +31,7 @@ }); end local summary; - if title and content then + if title and content and content:sub(1, #title) ~= title then summary = title .. "\n\n" .. content; elseif title or content then summary = content or title;