mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
fix(fediverse): use config name to get Fediverse config properties instead of hardcoded class string
This commit is contained in:
parent
4af40b5a71
commit
5fd0980ff7
@ -11,7 +11,6 @@ declare(strict_types=1);
|
||||
namespace Modules\Fediverse\Entities;
|
||||
|
||||
use CodeIgniter\Entity\Entity;
|
||||
use Modules\Fediverse\Config\Fediverse;
|
||||
use RuntimeException;
|
||||
|
||||
/**
|
||||
@ -112,7 +111,7 @@ class Actor extends Entity
|
||||
public function getAvatarImageUrl(): string
|
||||
{
|
||||
if ($this->attributes['avatar_image_url'] === null) {
|
||||
return base_url(config(Fediverse::class)->defaultAvatarImagePath);
|
||||
return base_url(config('Fediverse')->defaultAvatarImagePath);
|
||||
}
|
||||
|
||||
return $this->attributes['avatar_image_url'];
|
||||
@ -121,7 +120,7 @@ class Actor extends Entity
|
||||
public function getAvatarImageMimetype(): string
|
||||
{
|
||||
if ($this->attributes['avatar_image_mimetype'] === null) {
|
||||
return config(Fediverse::class)->defaultAvatarImageMimetype;
|
||||
return config('Fediverse')->defaultAvatarImageMimetype;
|
||||
}
|
||||
|
||||
return $this->attributes['avatar_image_mimetype'];
|
||||
@ -130,7 +129,7 @@ class Actor extends Entity
|
||||
public function getCoverImageUrl(): string
|
||||
{
|
||||
if ($this->attributes['cover_image_url'] === null) {
|
||||
return base_url(config(Fediverse::class)->defaultCoverImagePath);
|
||||
return base_url(config('Fediverse')->defaultCoverImagePath);
|
||||
}
|
||||
|
||||
return $this->attributes['cover_image_url'];
|
||||
@ -139,7 +138,7 @@ class Actor extends Entity
|
||||
public function getCoverImageMimetype(): string
|
||||
{
|
||||
if ($this->attributes['cover_image_mimetype'] === null) {
|
||||
return config(Fediverse::class)->defaultCoverImageMimetype;
|
||||
return config('Fediverse')->defaultCoverImageMimetype;
|
||||
}
|
||||
|
||||
return $this->attributes['cover_image_mimetype'];
|
||||
|
Loading…
x
Reference in New Issue
Block a user