From 638d4dfb5d9daa713e45f3e26c32c27a82837d53 Mon Sep 17 00:00:00 2001 From: j-charpie Date: Mon, 20 Jan 2025 22:15:21 -0600 Subject: [PATCH] Update IPQSRecord.php Current version is not consistant on whether the blacklist property flag is called [isblacklisted] or [blacklisted] --- src/IPQualityScore/DB/IPQSRecord.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IPQualityScore/DB/IPQSRecord.php b/src/IPQualityScore/DB/IPQSRecord.php index a4ea6f2..bc16531 100644 --- a/src/IPQualityScore/DB/IPQSRecord.php +++ b/src/IPQualityScore/DB/IPQSRecord.php @@ -479,7 +479,7 @@ public function ParseFirstByte(BinaryOption $value){ } if($value->Has(BinaryOption::IsBlacklisted)){ - $this->isblacklisted = true; + $this->blacklisted = true; } if($value->Has(BinaryOption::IsPrivate)){