Skip to content

Commit 3537356

Browse files
committed
fix: convert string to text on version retrieval
1 parent 06f8c38 commit 3537356

File tree

1 file changed

+1
-1
lines changed
  • rollbar-client/src/Rollbar/Client

1 file changed

+1
-1
lines changed

rollbar-client/src/Rollbar/Client/Item.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ instance ToJSON Notifier where
377377
defaultNotifier :: Notifier
378378
defaultNotifier = Notifier
379379
{ notifierName = "rollbar-client"
380-
, notifierVersion = showVersion Paths.version
380+
, notifierVersion = T.pack (showVersion Paths.version)
381381
}
382382

383383
newtype ItemId = ItemId Text

0 commit comments

Comments
 (0)