Skip to content

Commit

Permalink
Fix error in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Jan 24, 2025
1 parent c06ae49 commit 1e20cea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public boolean hasStationUpdateContinuity(String systemId, GbfsV3Delivery oldDel
if (
oldDelivery.stationStatus() == null ||
previousBase == null ||
previousBase.equals(oldDelivery.stationStatus().getLastUpdated())
!previousBase.equals(oldDelivery.stationStatus().getLastUpdated())
) {
logger.warn(
"Station status update does not have continuity for system={}",
Expand Down

0 comments on commit 1e20cea

Please sign in to comment.