fix copy&paste issue

thanks @mattwiebe
This commit is contained in:
Matthias Pfefferle 2023-05-25 10:30:51 +02:00
parent a1791b963c
commit f8b93760df
2 changed files with 2 additions and 2 deletions

View file

@ -38,6 +38,6 @@ class Application_User extends Blog_User {
} }
public function get_name() { public function get_name() {
return \esc_html( \get_bloginfo( 'activitypub_application_identifier', 'application' ) ); return \esc_html( \get_option( 'activitypub_application_identifier', 'application' ) );
} }
} }

View file

@ -56,7 +56,7 @@ class Blog_User extends User {
} }
public function get_username() { public function get_username() {
return \esc_html( \get_bloginfo( 'activitypub_blog_identifier', 'feed' ) ); return \esc_html( \get_option( 'activitypub_blog_identifier', 'feed' ) );
} }
public function get_avatar() { public function get_avatar() {