From cb2fdccbcba4b63ae5db402537e3266a0f1ac385 Mon Sep 17 00:00:00 2001 From: Tim Mickel Date: Mon, 8 Feb 2016 13:35:09 -0500 Subject: [PATCH] Fix mimeType string for official/free iOS emails --- ios/ScratchJr/src/ViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/ScratchJr/src/ViewController.m b/ios/ScratchJr/src/ViewController.m index 97502f6..ed1e5da 100644 --- a/ios/ScratchJr/src/ViewController.m +++ b/ios/ScratchJr/src/ViewController.m @@ -334,7 +334,7 @@ JSContext *js; NSData *projectData = [NSData dataWithContentsOfURL:projectURL]; - NSString* mimeType = @"application-x-scratchjr-project"; + NSString* mimeType = @"application/x-scratchjr-project"; #if PBS mimeType = @"application/x-pbskids-scratchjr-project";