Frontmatter
| id | 9062 |
| title | Fix: Cleanup Service incompatible with minified schema |
| state | Closed |
| labels | bugairegression |
| assignees | tobiu |
| createdAt | Feb 9, 2026, 12:00 AM |
| updatedAt | Feb 9, 2026, 12:11 AM |
| githubUrl | https://github.com/neomjs/neo/issues/9062 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | 8930 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 9, 2026, 12:11 AM |
The
DevRank.services.Cleanupservice is failing because it has not been updated to support the new minified data schema introduced in #9059.Error:
TypeError: Cannot read properties of undefined (reading 'toLowerCase')atCleanup.mjs:86.Cause: The service is attempting to access legacy property names (e.g.,
login,total_contributions) which have been renamed to short keys (e.g.,l,tc) inusers.json.Task: Refactor
apps/devrank/services/Cleanup.mjsto use the minified schema keys for all data operations (sorting, filtering, whitelisting).