We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 118d6e9 commit bd53ba7Copy full SHA for bd53ba7
core/CHANGELOG
@@ -1,6 +1,7 @@
1
Version 0.4.0 (2014-xx-xx)
2
--------------------------
3
Updated contexts schema to 1-0-1 (#292)
4
+Added ability to send an empty contexts array (#296)
5
6
Version 0.3.0 (2014-11-04)
7
core/lib/core.js
@@ -68,7 +68,7 @@ function trackerCore(base64, callback) {
68
* @return object Outer JSON
69
*/
70
function completeContexts(contexts) {
71
- if (contexts && contexts.length) {
+ if (contexts) {
72
return {
73
schema: 'iglu:com.snowplowanalytics.snowplow/contexts/jsonschema/1-0-1',
74
data: contexts
0 commit comments