File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ remote counterpart."
172172If EVEN-IF-OFFLINE is non-nil, we'll still refresh (that is,
173173we'll hit the API) if Magithub is offline."
174174 (interactive " P" )
175- (let ((magithub-cache (and ( not even-if-offline) 'expire )))
175+ (let ((magithub-cache (if even-if-offline nil magithub-cache )))
176176 (magithub-cache-without-cache :ci-status
177177 (ignore (magithub-ci-status (magithub-ci-status--get-default-ref)))))
178178 (when (derived-mode-p 'magit-status-mode )
Original file line number Diff line number Diff line change 88If EVEN-IF-OFFLINE is non-nil, we'll still refresh (that is,
99we'll hit the API) if Magithub is offline."
1010 (interactive " P" )
11- (let ((magithub-cache (and ( not even-if-offline) 'expire )))
11+ (let ((magithub-cache (if even-if-offline nil magithub-cache )))
1212 (magithub-cache-without-cache :issues
1313 (ignore (magithub--issue-list))))
1414 (when (derived-mode-p 'magit-status-mode )
You can’t perform that action at this time.
0 commit comments