diff --git a/BVSDK/BVCurationsUI/BVCurationsUICollectionView.m b/BVSDK/BVCurationsUI/BVCurationsUICollectionView.m index cd9c40b1..1f6e7ee9 100644 --- a/BVSDK/BVCurationsUI/BVCurationsUICollectionView.m +++ b/BVSDK/BVCurationsUI/BVCurationsUICollectionView.m @@ -147,7 +147,9 @@ - (void)loadCurationsFeed:(NSUInteger)limit req.limit = limit; req.hasPhotoOrVideo = @YES; if (_lastFetchedTimeStamp) { - req.before = _lastFetchedTimeStamp; + /*We decrement lastFetchedTimeStamp so that only items posted + before the given timestamp are fetched*/ + req.before = [NSNumber numberWithInt:[_lastFetchedTimeStamp intValue] - 1]; } if (_productId && 0 < _productId.length) {