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:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2019-10-02 14:04:01 +0300
committerGitHub <noreply@github.com>2019-10-02 14:04:01 +0300
commitba260d16103fc143b94471bf9378e32cae5fcd29 (patch)
tree3aebf70e4907bda478709c0885199ae815c62d13 /lib/Model
parent24f211efe90c5d7be47b299d074baa33237fe3bd (diff)
parent041cb27d87e3377a08849ac5845a5645239e2452 (diff)
Merge pull request #2062 from nextcloud/refactor/remove-unused-message-size
Remove unused message size field
Diffstat (limited to 'lib/Model')
-rw-r--r--lib/Model/IMAPMessage.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Model/IMAPMessage.php b/lib/Model/IMAPMessage.php
index 070888e6c..e3719d2b7 100644
--- a/lib/Model/IMAPMessage.php
+++ b/lib/Model/IMAPMessage.php
@@ -434,7 +434,6 @@ class IMAPMessage implements IMessage, JsonSerializable {
'date' => OC::$server->getDateTimeFormatter()->formatDate($this->getSentDate()->format('U')),
'dateInt' => $this->getSentDate()->getTimestamp(),
'dateIso' => $this->getSentDate()->format('c'),
- 'size' => Util::humanFileSize($this->getSize()),
'flags' => $this->getFlags(),
];
}