From e1a3ee11120bbc4f40fca440f8e276fc8fd612bd Mon Sep 17 00:00:00 2001 From: Volodymyr Komarov Date: Sun, 19 Jun 2022 22:08:27 +0300 Subject: [PATCH] Fix tags autocomplete for special chars --- app/src/Controller/Wallets/TagsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/Controller/Wallets/TagsController.php b/app/src/Controller/Wallets/TagsController.php index 2422392..a9df515 100644 --- a/app/src/Controller/Wallets/TagsController.php +++ b/app/src/Controller/Wallets/TagsController.php @@ -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); }