Files
kevin-asprec ca1afbd8db fix: replace dangerous r.data.data || r.data fallback with nullish coalescing
The || operator fallback returned the response wrapper object (truthy but
not an array) when r.data.data was null/undefined, causing .map() crashes.
Use ?? null, ?? [], and Array.isArray() guards instead.
2026-05-07 06:49:44 +08:00
..