Skip to content

Commit

Permalink
#267 Fix report date order
Browse files Browse the repository at this point in the history
  • Loading branch information
loreV committed Sep 30, 2023
1 parent 609bcc3 commit b6d2ea9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public List<AccessibilityNotification> getUnresolved(final int skip,
MongoUtils.getConditionalEqFilter(realm, COLLECTION_REALM_STRUCTURE)
.append(AccessibilityNotification.RESOLUTION, ""))
.sort(new Document(AccessibilityNotification.REPORT_DATE,
MongoUtils.ASCENDING_ORDER))
DESCENDING_ORDER))
.skip(skip)
.limit(limit));
}
Expand Down

0 comments on commit b6d2ea9

Please sign in to comment.