Closed (fixed)
Project:
SearchStax Studio – Site Search
Version:
1.x-dev
Component:
General code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Dec 2025 at 20:05 UTC
Updated:
30 Jan 2026 at 18:49 UTC
Jump to comment: Most recent
Comments
Comment #3
drunken monkeyThanks a lot for reporting this problem!
I could reproduce the issue and was able to identify the cause. This MR should fix the problem. I have already merged it to HEAD, but please give it a try and provide feedback on whether this works for you.
Once confirmed, this will be part of the next stable release.
Comment #6
nmillin commentedThanks @drunken monkey for looking at this!
I had a bad time using the patch (https://git.drupalcode.org/project/searchstax/-/merge_requests/63.patch) for this. spellcheck wasn't working. In poking at src/Service/SearchStax.php, it looks like a return is always hitting for me because I want Drupal's config to be used. The code in question:
If I comment out the return, it works! I get spellcheck again.
Is this return needed?
Thanks for all you do!
Comment #8
drunken monkeyThe return is needed if you want Drupal’s configs to be used, yes, otherwise you’ll get to the part of the code that discards parameters from the Solr query. If you want to have that, then you don’t need to change the code, you just need to enable the “Configure searches via SearchStudio” setting.
However, if spellcheck functionality isn’t working when that setting is disabled then that would of course still be an issue we need to investigate.
Comment #9
drunken monkeyMarking this as fixed since this was now confirmed to be working properly. In case this is still not working for you, please file a separate ticket with more details on how to reproduce.
There is now also #3568022: Spellcheck does not ignore case, fixing a problem caused by this change.