From 06cb261aa6359d99320b2deacf762c9138027657 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 26 Oct 2020 21:42:06 +0000 Subject: [PATCH] workaround for versions of sqlite which we don't really support --- ext/trash/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/trash/main.php b/ext/trash/main.php index c80eb7da..91dcf985 100644 --- a/ext/trash/main.php +++ b/ext/trash/main.php @@ -97,7 +97,7 @@ class Trash extends Extension $matches = []; if (is_null($event->term) && $this->no_trash_query($event->context)) { - $event->add_querylet(new Querylet("trash = :false", ["false"=>false])); + $event->add_querylet(new Querylet("trash != :true", ["true"=>true])); } if (is_null($event->term)) {