diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-06-09 16:38:47 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-06-09 16:38:47 -0400 |
commit | bc0d6a9c54a41e1955028499fc1fdaf4f4ce2650 (patch) | |
tree | 15ec883fe185bf3e4f63da2c0d388507968e9660 /Assistant | |
parent | 1b621760c062c666f89e7fee0df689dcea9c6c79 (diff) |
filter out NoUUID remotes from syncDataRemotes
Diffstat (limited to 'Assistant')
-rw-r--r-- | Assistant/DaemonStatus.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Assistant/DaemonStatus.hs b/Assistant/DaemonStatus.hs index 4c42ffdbe..92aad0735 100644 --- a/Assistant/DaemonStatus.hs +++ b/Assistant/DaemonStatus.hs @@ -55,6 +55,7 @@ calcSyncRemotes = do let good r = Remote.uuid r `elem` alive let syncable = filter good rs let syncdata = filter (not . remoteAnnexIgnore . Remote.gitconfig) $ + filter (\r -> Remote.uuid r /= NoUUID) $ filter (not . Remote.isXMPPRemote) syncable return $ \dstatus -> dstatus |