- πΊπΈUnited States dipsykapoor
For the proposed solution, we should make it generic so it reads from whatever is the attribute name in `foreach ($data['suggest'][attributeName][$user_input]['suggestions'] ?? [] as $suggestion) {`
based on the language, the attributeName as be different
- π¦πΉAustria drunken monkey Vienna, Austria
drunken monkey β made their first commit to this issueβs fork.
- Merge request !26Fix auto-suggest functionality after modification to response structure β (Merged) created by drunken monkey
- π¦πΉAustria drunken monkey Vienna, Austria
There actually is already code that should be handling this nested structure:
while (count($data) === 1) { $tmp = reset($data); if (!is_array($tmp)) { break; } $data = $tmp; }
However, it seems since I wrote this the response structure has slightly changed: an additional
metadata
property has been added at the top level so thecount($data) === 1
check fails right away. The changes in this MR should fix the functionality again while still keeping the code as flexible as possible wrt different keys used in the response.
Please review! -
drunken monkey β
committed 6b9ec57d on 1.x
Issue #3515197 by drunken monkey: Fixed auto-suggest bug caused by new /...
-
drunken monkey β
committed 6b9ec57d on 1.x