- Issue created by @aleix
- 🇧🇪Belgium swentel
Hmm, I wonder if we also should escape the query as done in the 'search' part in baseQuery, or is it good enough for your use case?
- 🇧🇪Belgium swentel
Maybe the escape isn't that necessary, but maybe wildcards are?
- 🇪🇸Spain aleix
I tried to escape and it will escape the wildcards... because we need to look for:
https://{$domain}%/{$username}%
Also, when wildcards are there we end up with something like "%https://{$domain}%/{$username}%", leading to something different to what it is looked for.
- 🇧🇪Belgium swentel
right, makes sense. I guess we can use str_contains instead of the strpos call (and replace the rest as well)