From fd562677fdac92a9a5e9eb97f271bad9c427d8c7 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 10 Jan 2021 21:30:30 +0000 Subject: [PATCH] Use "===" --- src/Protocol/DFRN.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index 26b68b15b9..a322327b0e 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -2635,7 +2635,7 @@ class DFRN $header["contact-id"] = $importer["id"]; $header["direction"] = $direction; - if ($direction == Conversation::RELAY) { + if ($direction === Conversation::RELAY) { $header['post-type'] = Item::PT_RELAY; }