Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.73.1] - 2025-12-15
### Fixed
- SABILITY UI CleanUp: Group Filters - API improvements. Fix bed array handling[#613](https://github.com/rokwire/groups-building-block/issues/613)

## [1.73.0] - 2025-12-15
### Added
Expand Down
2 changes: 1 addition & 1 deletion driven/storage/adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ func (sa *Adapter) FindGroups(clientID string, userID *string, groupsFilter mode
return err
}

if rowNumbers[0].RowNumber != 0 {
if len(rowNumbers) > 0 && rowNumbers[0].RowNumber != 0 {
limitIDRowNumber = rowNumbers[0].RowNumber
}
}
Expand Down