diff --git a/src/internal/m365/collection/drive/url_cache.go b/src/internal/m365/collection/drive/url_cache.go index 6549796267..81c21213e4 100644 --- a/src/internal/m365/collection/drive/url_cache.go +++ b/src/internal/m365/collection/drive/url_cache.go @@ -176,7 +176,7 @@ func (uc *urlCache) refreshCache( } } - du, err := pager.Results() + _, err := pager.Results() if err != nil { return clues.Stack(err) } @@ -185,7 +185,6 @@ func (uc *urlCache) refreshCache( // Update last refresh time uc.lastRefreshTime = time.Now() - uc.prevDelta = du.URL return nil }