avoid showing alert when there are no remotes to push to
This commit is contained in:
parent
22d7447ced
commit
3695cab949
1 changed files with 3 additions and 2 deletions
|
@ -54,8 +54,9 @@ pushThread st dstatus commitchan pushmap = do
|
|||
if shouldPush now commits
|
||||
then do
|
||||
remotes <- knownRemotes <$> getDaemonStatus dstatus
|
||||
void $ alertWhile dstatus (pushAlert remotes) $
|
||||
pushToRemotes thisThread now st (Just pushmap) remotes
|
||||
unless (null remotes) $
|
||||
void $ alertWhile dstatus (pushAlert remotes) $
|
||||
pushToRemotes thisThread now st (Just pushmap) remotes
|
||||
else do
|
||||
debug thisThread
|
||||
[ "delaying push of"
|
||||
|
|
Loading…
Reference in a new issue