diff options
author | zotlabs <mike@macgirvin.com> | 2017-04-29 16:30:11 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-04-29 16:30:11 -0700 |
commit | 230617208ba4ba81a7c9a289ba44da7319500397 (patch) | |
tree | 285d1517911d5d46e95d5734f6a88e50bebf8f70 /include | |
parent | 033cf6138071c1707b3bb448524761f086b8a445 (diff) | |
download | volse-hubzilla-230617208ba4ba81a7c9a289ba44da7319500397.tar.gz volse-hubzilla-230617208ba4ba81a7c9a289ba44da7319500397.tar.bz2 volse-hubzilla-230617208ba4ba81a7c9a289ba44da7319500397.zip |
more work on client side e2ee
Diffstat (limited to 'include')
-rw-r--r-- | include/message.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/message.php b/include/message.php index 261a6a673..61c3e8afd 100644 --- a/include/message.php +++ b/include/message.php @@ -366,9 +366,6 @@ function private_messages_list($uid, $mailbox = '', $start = 0, $numitems = 0) { if($r[$k]['body']) $r[$k]['body'] = base64url_decode(str_rot47($r[$k]['body'])); } - if($r[$k]['mail_raw']) - $r[$k]['body'] = mail_prepare_binary([ 'id' => $r[$k]['id'] ]); - } return $r; @@ -407,8 +404,6 @@ function private_messages_fetch_message($channel_id, $messageitem_id, $updatesee if($messages[$k]['body']) $messages[$k]['body'] = base64url_decode(str_rot47($messages[$k]['body'])); } - if($messages[$k]['mail_raw']) - $messages[$k]['body'] = mail_prepare_binary([ 'id' => $messages[$k]['id'] ]); } |