diff --git a/includes/functions.php b/includes/functions.php index df41bfc..90dec8a 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -325,7 +325,7 @@ function get_blacklist() { */ function is_blacklisted( $url ) { foreach ( \ActivityPub\get_blacklist() as $blacklisted_host ) { - if ( \strpos( $url, $blacklisted_host ) !== false ) { + if ( \stripos( $url, $blacklisted_host ) !== false ) { return true; } }