summaryrefslogtreecommitdiff
path: root/src/Data/Torrent/Piece.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/Torrent/Piece.hs')
-rw-r--r--src/Data/Torrent/Piece.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Data/Torrent/Piece.hs b/src/Data/Torrent/Piece.hs
index 7eb4e3d5..f7c6257b 100644
--- a/src/Data/Torrent/Piece.hs
+++ b/src/Data/Torrent/Piece.hs
@@ -117,7 +117,7 @@ data Piece a = Piece
117 , pieceData :: !a 117 , pieceData :: !a
118 } deriving (Show, Read, Eq, Typeable) 118 } deriving (Show, Read, Eq, Typeable)
119 119
120$(deriveJSON (L.map toLower . L.dropWhile isLower) ''Piece) 120$(deriveJSON defaultOptions { fieldLabelModifier = (L.map toLower . L.dropWhile isLower) } ''Piece)
121 121
122instance NFData (Piece a) 122instance NFData (Piece a)
123 123
@@ -160,7 +160,7 @@ data PieceInfo = PieceInfo
160 -- ^ Concatenation of all 20-byte SHA1 hash values. 160 -- ^ Concatenation of all 20-byte SHA1 hash values.
161 } deriving (Show, Read, Eq, Typeable) 161 } deriving (Show, Read, Eq, Typeable)
162 162
163$(deriveJSON (L.map toLower . L.dropWhile isLower) ''PieceInfo) 163$(deriveJSON defaultOptions { fieldLabelModifier = (L.map toLower . L.dropWhile isLower) } ''PieceInfo)
164 164
165-- | Number of bytes in each piece. 165-- | Number of bytes in each piece.
166makeLensesFor [("piPieceLength", "pieceLength")] ''PieceInfo 166makeLensesFor [("piPieceLength", "pieceLength")] ''PieceInfo