diff options
author | Joey Hess <joey@kitenet.net> | 2012-08-29 15:32:57 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-08-29 15:32:57 -0400 |
commit | 476d36ed16c2afaf881b5ed886fe3abefc773fc3 (patch) | |
tree | 598ecca107fb13a70cff0940ebc77c6d73a9dbc9 /Logs | |
parent | aeffc5fa700b0e33529f7bb7c9ddbd2715e2d9c0 (diff) |
stupid typo
Diffstat (limited to 'Logs')
-rw-r--r-- | Logs/Transfer.hs | 2 |
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 |