when clicking a notification to view a private mail message, actually view that message instead of the most recent.
This commit is contained in:
parent
4da65183e0
commit
5219c4a09a
@ -296,6 +296,10 @@ class Mail extends \Zotlabs\Web\Controller {
|
||||
|
||||
return $o;
|
||||
}
|
||||
|
||||
$last_message = private_messages_list(local_channel(), $mailbox, 0, 1);
|
||||
|
||||
$mid = ((argc() > 2) && (intval(argv(2)))) ? argv(2) : $last_message[0]['id'];
|
||||
|
||||
switch(argv(1)) {
|
||||
case 'combined':
|
||||
@ -309,12 +313,15 @@ class Mail extends \Zotlabs\Web\Controller {
|
||||
break;
|
||||
default:
|
||||
$mailbox = 'combined';
|
||||
|
||||
// notifications direct to mail/nn
|
||||
|
||||
if(intval(argv(1)))
|
||||
$mid = intval(argv(1));
|
||||
break;
|
||||
}
|
||||
|
||||
$last_message = private_messages_list(local_channel(), $mailbox, 0, 1);
|
||||
|
||||
$mid = ((argc() > 2) && (intval(argv(2)))) ? argv(2) : $last_message[0]['id'];
|
||||
|
||||
$plaintext = true;
|
||||
|
||||
|
Reference in New Issue
Block a user