Skip to content

Commit

Permalink
fix typo in string template value
Browse files Browse the repository at this point in the history
Signed-off-by: anoy <anoymouserver+github@mailbox.org>
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
  • Loading branch information
anoymouserver authored and mnassabain committed Mar 1, 2021
1 parent e1dacc2 commit b94e8f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Db/ItemMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public function findAllNewFolder(?int $id, int $updatedSince, bool $showAll, str
$sql = $this->buildStatusQueryPart($showAll);

$folderWhere = is_null($id) ? 'IS' : '=';
$sql .= "AND `feeds`.`folder_id` ${$folderWhere} ? " .
$sql .= "AND `feeds`.`folder_id` ${folderWhere} ? " .
'AND `items`.`last_modified` >= ? ';
$sql = $this->makeSelectQuery($sql);
$params = [$userId, $id, $updatedSince];
Expand Down

0 comments on commit b94e8f9

Please sign in to comment.