do not double encode already encoded mid
This commit is contained in:
parent
0aa01740d1
commit
727b49c8ab
@ -267,6 +267,11 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
if(strpos($message, $tt['xname']) === 0)
|
||||
$message = substr($message, strlen($tt['xname']) + 1);
|
||||
|
||||
|
||||
$mid = basename($tt['link']);
|
||||
|
||||
$b64mid = ((strpos($mid, 'b64.' === 0)) ? $mid : 'b64.' . base64url_encode($mid));
|
||||
|
||||
$notifs[] = array(
|
||||
'notify_link' => z_root() . '/notify/view/' . $tt['id'],
|
||||
'name' => $tt['xname'],
|
||||
@ -274,7 +279,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
'photo' => $tt['photo'],
|
||||
'when' => relative_date($tt['created']),
|
||||
'hclass' => (($tt['seen']) ? 'notify-seen' : 'notify-unseen'),
|
||||
'b64mid' => 'b64.' . base64url_encode(basename($tt['link'])),
|
||||
'b64mid' => $b64mid,
|
||||
'notify_id' => $tt['id'],
|
||||
'message' => $message
|
||||
);
|
||||
|
Reference in New Issue
Block a user