normalize check
This commit is contained in:
parent
7f346baf69
commit
113a3bd4d2
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ function add_rewrite_rules() {
|
|||
\add_rewrite_rule( '^.well-known/webfinger', 'index.php?rest_route=/activitypub/1.0/webfinger', 'top' );
|
||||
}
|
||||
|
||||
if ( ! \class_exists( 'Nodeinfo' ) || ! get_option( 'blog_public' ) ) {
|
||||
if ( ! \class_exists( 'Nodeinfo' ) || ! (bool) \get_option( 'blog_public', 1 ) ) {
|
||||
\add_rewrite_rule( '^.well-known/nodeinfo', 'index.php?rest_route=/activitypub/1.0/nodeinfo/discovery', 'top' );
|
||||
\add_rewrite_rule( '^.well-known/x-nodeinfo2', 'index.php?rest_route=/activitypub/1.0/nodeinfo2', 'top' );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue