From 1e29c6f7053813af933d42faa07ebce50687919c Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 1 Oct 2022 16:54:11 +0000 Subject: [PATCH] Ensure not to add the plink --- src/Content/Text/Plaintext.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Content/Text/Plaintext.php b/src/Content/Text/Plaintext.php index 75fdf2b2bb..1e76a557bc 100644 --- a/src/Content/Text/Plaintext.php +++ b/src/Content/Text/Plaintext.php @@ -223,8 +223,6 @@ class Plaintext unset($post['url']); } } - } elseif ($link != '') { - $complete_msg .= "\n" . $link; } } @@ -240,6 +238,12 @@ class Plaintext $limit = $limit - 23; } + if (!in_array($link, ['', $item['plink']]) && ($post['type'] != 'photo')) { + $complete_msg .= "\n" . $link; + } + + $post['parts'] = self::getParts(trim($complete_msg), $limit); + if (iconv_strlen($msg, 'UTF-8') > $limit) { if (($post['type'] == 'text') && isset($post['url'])) { $post['url'] = $item['plink']; @@ -255,10 +259,6 @@ class Plaintext } } - if ($limit > 0) { - $post['parts'] = self::getParts(trim($complete_msg), $limit); - } - $post['text'] = trim($msg); return $post; -- 2.39.5