Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Model
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2021-01-16 05:39:26 +0300
committerGretaD <gretadoci@gmail.com>2021-01-18 13:49:49 +0300
commit403944291826f60e40d6a5691477c985bbfd14a3 (patch)
treeb6fb0286ea9bd5074722f0186a116aeb898c4fd1 /lib/Model
parent33a5c1ea0ca9165b96d8fc718f209187eadc7756 (diff)
Bump nextcloud/coding-standard from 0.4.0 to 0.5.0
Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 0.4.0 to 0.5.0. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/coding-standard/compare/v0.4.0...v0.5.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Diffstat (limited to 'lib/Model')
-rw-r--r--lib/Model/IMAPMessage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Model/IMAPMessage.php b/lib/Model/IMAPMessage.php
index c5c1921dd..8dc9d8bfc 100644
--- a/lib/Model/IMAPMessage.php
+++ b/lib/Model/IMAPMessage.php
@@ -450,7 +450,7 @@ class IMAPMessage implements IMessage, JsonSerializable {
$data['body'] = $this->getHtmlBody($id);
} else {
$mailBody = $this->htmlService->convertLinks($mailBody);
- list($mailBody, $signature) = $this->htmlService->parseMailBody($mailBody);
+ [$mailBody, $signature] = $this->htmlService->parseMailBody($mailBody);
$data['body'] = $mailBody;
$data['signature'] = $signature;
}