mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Fix mastoapi notification type casting to include comment and share (mention and reblog) notifications
This commit is contained in:
parent
10eaffb074
commit
eba84530aa
1 changed files with 19 additions and 2 deletions
|
@ -105,7 +105,7 @@ class NotificationService {
|
|||
|
||||
$res = collect([]);
|
||||
foreach($ids as $id) {
|
||||
$n = self::getNotification($id);
|
||||
$n = self::rewriteMastodonTypes(self::getNotification($id));
|
||||
if($n != null && in_array($n['type'], self::MASTODON_TYPES)) {
|
||||
$n['account'] = AccountService::getMastodon($n['account']['id']);
|
||||
|
||||
|
@ -133,7 +133,7 @@ class NotificationService {
|
|||
|
||||
$res = collect([]);
|
||||
foreach($ids as $id) {
|
||||
$n = self::getNotification($id);
|
||||
$n = self::rewriteMastodonTypes(self::getNotification($id));
|
||||
if($n != null && in_array($n['type'], self::MASTODON_TYPES)) {
|
||||
$n['account'] = AccountService::getMastodon($n['account']['id']);
|
||||
|
||||
|
@ -175,6 +175,23 @@ class NotificationService {
|
|||
]));
|
||||
}
|
||||
|
||||
public static function rewriteMastodonTypes($notification)
|
||||
{
|
||||
if(!$notification || !isset($notification['type'])) {
|
||||
return $notification;
|
||||
}
|
||||
|
||||
if($notification['type'] === 'comment') {
|
||||
$notification['type'] = 'mention';
|
||||
}
|
||||
|
||||
if($notification['type'] === 'share') {
|
||||
$notification['type'] = 'reblog';
|
||||
}
|
||||
|
||||
return $notification;
|
||||
}
|
||||
|
||||
public static function set($id, $val)
|
||||
{
|
||||
return Redis::zadd(self::CACHE_KEY . $id, $val, $val);
|
||||
|
|
Loading…
Reference in a new issue