From de2898988bd99aad8c74d077920d432bc536c2fe Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 26 Jun 2021 11:31:37 +0000 Subject: [PATCH] Inverted condition --- src/Model/Item.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Item.php b/src/Model/Item.php index 26834c3a8b..871ff9ad8e 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -159,7 +159,7 @@ class Item $fields['vid'] = Verb::getID($fields['verb']); } - if (empty($fields['edited'])) { + if (!empty($fields['edited'])) { $previous = Post::selectFirst(['edited'], $condition); }