Skip to content

Commit

Permalink
Merge pull request #84 from cash-track/feature/tags
Browse files Browse the repository at this point in the history
Fix tags autocomplete for special chars
  • Loading branch information
vokomarov authored Jun 19, 2022
2 parents 5b7732f + e1a3ee1 commit eca2381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/Controller/Wallets/TagsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function find(int $walletId, string $query = ''): ResponseInterface
return $this->response->create(404);
}

$tags = $this->tagRepository->findAllByUsersPK($wallet->getUserIDs(), $query);
$tags = $this->tagRepository->findAllByUsersPK($wallet->getUserIDs(), urldecode($query));

return $this->tagsView->json($tags);
}
Expand Down

0 comments on commit eca2381

Please sign in to comment.