Change static_path on custom emojis to static_url

This commit is contained in:
Shadowfacts 2022-04-01 18:40:13 -04:00 committed by GitHub
parent 620b7b944c
commit 0a7f8fd142
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ class CustomEmoji extends Model
return [
'shortcode' => $match,
'url' => $url,
'static_path' => $url,
'static_url' => $url,
'visible_in_picker' => $tag->disabled == false
];
}
@ -57,7 +57,7 @@ class CustomEmoji extends Model
if($activitypub == true) {
return $tag && isset($tag['icon']);
} else {
return $tag && isset($tag['static_path']);
return $tag && isset($tag['static_url']);
}
})
->values()

View File

@ -118,7 +118,7 @@ class CustomEmojiService
return [
'shortcode' => str_replace(':', '', $emojo->shortcode),
'url' => $url,
'static_path' => $url,
'static_url' => $url,
'visible_in_picker' => $emojo->disabled == false
];
})