From d5f97e424e28f6a0d716663aded7008fbee14047 Mon Sep 17 00:00:00 2001 From: Michel Mongkhoy Date: Tue, 16 Dec 2014 18:00:06 +0100 Subject: [PATCH] Add missing prefix for screen view schema --- Snowplow/SnowplowTracker.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snowplow/SnowplowTracker.m b/Snowplow/SnowplowTracker.m index ca1bb22aa..5ae6668dd 100644 --- a/Snowplow/SnowplowTracker.m +++ b/Snowplow/SnowplowTracker.m @@ -417,7 +417,7 @@ - (void) trackScreenView:(NSString *)name id:(NSString *)id_ context:(NSMutableArray *)context timestamp:(double)timestamp { - NSString *snowplowSchema = [NSString stringWithFormat:@"%@/screen_view/%@/1-0-0", kSnowplowVendor, _schemaTag]; + NSString *snowplowSchema = [NSString stringWithFormat:@"%@%@/screen_view/%@/1-0-0", kIglu, kSnowplowVendor, _schemaTag]; NSMutableDictionary *screenViewProperties = [[NSMutableDictionary alloc] init]; if(id_ != nil) [screenViewProperties setObject:id_ forKey:@"id"];