Frontmatter
| id | 7731 |
| title | Fix: incorrect length check for releases object in ReleaseSyncer |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Nov 9, 2025, 10:25 AM |
| updatedAt | Nov 9, 2025, 10:28 AM |
| githubUrl | https://github.com/neomjs/neo/issues/7731 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Nov 9, 2025, 10:28 AM |
The
ReleaseSyncerservice incorrectly used the.lengthproperty on thethis.releasesobject. Since this is an object and not an array, the check was not functioning as intended.This has been corrected to use
Object.keys(this.releases).lengthto accurately count the number of releases.This fix ensures that: