diff options
author | 2012-11-11 16:23:16 -0400 | |
---|---|---|
committer | 2012-11-11 16:23:16 -0400 | |
commit | 6068fd160ffeb930368a4c4c2a8818ace71f29ab (patch) | |
tree | 3f5a183e9594854a55f17cfdca740516943084c6 /Assistant/Drop.hs | |
parent | 0d21e323e0d095232e347859adaaf2cc2cd71592 (diff) |
don't try to transfer data to/from XMPP remotes
Partition syncRemotes into ones needing git sync (ie, non-special remotes),
and ones needing data sync (ie, non-XMPP remotes).
Diffstat (limited to 'Assistant/Drop.hs')
-rw-r--r-- | Assistant/Drop.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Assistant/Drop.hs b/Assistant/Drop.hs index d28a05a53..66e738a6f 100644 --- a/Assistant/Drop.hs +++ b/Assistant/Drop.hs @@ -23,7 +23,7 @@ import Config handleDrops :: Bool -> Key -> AssociatedFile -> Assistant () handleDrops _ _ Nothing = noop handleDrops fromhere key f = do - syncrs <- syncRemotes <$> getDaemonStatus + syncrs <- syncDataRemotes <$> getDaemonStatus liftAnnex $ do locs <- loggedLocations key handleDrops' locs syncrs fromhere key f |