Skip to content

Commit

Permalink
accept LONG cell locations
Browse files Browse the repository at this point in the history
  • Loading branch information
cproof committed Feb 27, 2024
1 parent 767dccd commit e5c38de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public CellLocation cellLocationRequestToCellLocation(CellLocationRequest cellLo
.test(test)
.openTestUUID(test.getOpenTestUuid())
.areaCode(cellLocationRequest.getAreaCode())
.locationId(cellLocationRequest.getLocationId().intValue())
.locationId(cellLocationRequest.getLocationId() == null ? null : cellLocationRequest.getLocationId().intValue())
.primaryScramblingCode(cellLocationRequest.getPrimaryScramblingCode())
.time(TimeUtils.getZonedDateTimeFromMillisAndTimezone(cellLocationRequest.getTime(), test.getTimezone()))
.timeNs(cellLocationRequest.getTimeNs())
Expand Down

0 comments on commit e5c38de

Please sign in to comment.