Skip to content

Commit

Permalink
Fix bug with missing message collector (#159)
Browse files Browse the repository at this point in the history
* Fix bug with missing message collector

* Bump version
  • Loading branch information
justinpolygon authored Jan 3, 2024
1 parent 0a15ad7 commit 3ad9ed1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/io/polygon/kotlin/sdk/Version.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.polygon.kotlin.sdk

object Version {
const val name = "v5.1.1"
const val name = "v5.1.2"
const val userAgent = "Polygon.io JVM Client/$name"
}
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ constructor(
Market.BusinessCrypto -> parseBusinessMessage(frame)
is Market.Other -> parseOtherMessage(frame)
}
collector.add(message)
}

return collector
Expand Down

0 comments on commit 3ad9ed1

Please sign in to comment.