summaryrefslogtreecommitdiff
path: root/Logs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-08-29 15:32:57 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-08-29 15:32:57 -0400
commit476d36ed16c2afaf881b5ed886fe3abefc773fc3 (patch)
tree598ecca107fb13a70cff0940ebc77c6d73a9dbc9 /Logs
parentaeffc5fa700b0e33529f7bb7c9ddbd2715e2d9c0 (diff)
stupid typo
Diffstat (limited to 'Logs')
-rw-r--r--Logs/Transfer.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Logs/Transfer.hs b/Logs/Transfer.hs
index ea56035d1..5c16e758e 100644
--- a/Logs/Transfer.hs
+++ b/Logs/Transfer.hs
@@ -64,7 +64,7 @@ readLcDirection _ = Nothing
equivilantTransfer :: Transfer -> Transfer -> Bool
equivilantTransfer t1 t2
| transferDirection t1 == Download && transferDirection t2 == Download &&
- transferUUID t1 == transferUUID t2 = True
+ transferKey t1 == transferKey t2 = True
| otherwise = t1 == t2
percentComplete :: Transfer -> TransferInfo -> Maybe Percentage