diff options
Diffstat (limited to 'Command/Sync.hs')
-rw-r--r-- | Command/Sync.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Command/Sync.hs b/Command/Sync.hs index 4c3b90969..1bd8e623c 100644 --- a/Command/Sync.hs +++ b/Command/Sync.hs @@ -576,7 +576,10 @@ seekSyncContent o rs = do mvar <- liftIO newEmptyMVar bloom <- case keyOptions o of Just WantAllKeys -> Just <$> genBloomFilter (seekworktree mvar []) - _ -> seekworktree mvar (contentOfOption o) (const noop) >> pure Nothing + _ -> do + l <- workTreeItems (contentOfOption o) + seekworktree mvar l (const noop) + pure Nothing withKeyOptions' (keyOptions o) False (return (seekkeys mvar bloom)) (const noop) |