mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
Fix custom emojis not displayed in messages and screen name
This commit is contained in:
parent
ee02589df6
commit
5208512073
1 changed files with 2 additions and 2 deletions
|
@ -330,7 +330,7 @@ class MastodonAccount implements UserInterface
|
||||||
|
|
||||||
public function addField(CustomField $field): self
|
public function addField(CustomField $field): self
|
||||||
{
|
{
|
||||||
if (in_array($field, $this->Fields) !== false) {
|
if (in_array($field, $this->Fields) === false) {
|
||||||
$this->Fields[] = $field;
|
$this->Fields[] = $field;
|
||||||
$field->setMastodonAccount($this);
|
$field->setMastodonAccount($this);
|
||||||
}
|
}
|
||||||
|
@ -357,7 +357,7 @@ class MastodonAccount implements UserInterface
|
||||||
|
|
||||||
public function addEmoji(Emoji $emoji): self
|
public function addEmoji(Emoji $emoji): self
|
||||||
{
|
{
|
||||||
if (in_array($emoji, $this->Emojis) !== false) {
|
if (in_array($emoji, $this->Emojis) === false) {
|
||||||
$this->Emojis[] = $emoji;
|
$this->Emojis[] = $emoji;
|
||||||
$emoji->setMastodonAccount($this);
|
$emoji->setMastodonAccount($this);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue