Skip to content

Commit

Permalink
fix: display name formatting in Extension model
Browse files Browse the repository at this point in the history
  • Loading branch information
dogukanoksuz committed Dec 28, 2023
1 parent 4d9b4a9 commit 2c42769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Models/Extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public function getDisplayNameAttribute($value)
return $displayName[auth('api')->user()->language] ?? $displayName[app()->getLocale()] ?? $this->attributes['display_name'];
}

return $this->attributes['display_name'];
return str_replace('"', '', $this->attributes['display_name']);
}

/**
Expand Down

0 comments on commit 2c42769

Please sign in to comment.