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;
|
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)) {
|
switch(argv(1)) {
|
||||||
case 'combined':
|
case 'combined':
|
||||||
@ -309,12 +313,15 @@ class Mail extends \Zotlabs\Web\Controller {
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
$mailbox = 'combined';
|
$mailbox = 'combined';
|
||||||
|
|
||||||
|
// notifications direct to mail/nn
|
||||||
|
|
||||||
|
if(intval(argv(1)))
|
||||||
|
$mid = intval(argv(1));
|
||||||
break;
|
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;
|
$plaintext = true;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user