diff --git a/Assistant/WebApp/RepoList.hs b/Assistant/WebApp/RepoList.hs index df9ff56b99..5bce190a64 100644 --- a/Assistant/WebApp/RepoList.hs +++ b/Assistant/WebApp/RepoList.hs @@ -177,7 +177,8 @@ repoList reposelector where val iscloud r = Just (iscloud, (u, DisabledRepoActions $ r u)) list l = liftAnnex $ do - let l' = nubBy (\x y -> fst x == fst y) l + let l' = filter (\(u, _) -> u /= NoUUID) $ + nubBy (\x y -> fst x == fst y) l l'' <- zip <$> Remote.prettyListUUIDs (map fst l') <*> pure l'