The good folks at mParticle spotted this whilst working on integrating Snowplow with their platform - Jonathan Almeida (@jonalmeida) - can you take a look please?
There might be a bug in the trackScreenView code. The version I have from Github reads:
payload.setSchema( this.baseSchemaPath + "/contexts/" + this.schemaTag + Version.VERSION);
This led to an exception, possibly in the Jackson JSON libraries.
I fixed it with this line:
payload.setSchema( this.baseSchemaPath + "/contexts/" + this.schemaTag + "/" + Version.VERSION);
The good folks at mParticle spotted this whilst working on integrating Snowplow with their platform - Jonathan Almeida (@jonalmeida) - can you take a look please?
There might be a bug in the trackScreenView code. The version I have from Github reads:
This led to an exception, possibly in the Jackson JSON libraries.
I fixed it with this line: