From 1f88f65e9d9caf277dfedd5fe447e3cdcfd6cdf9 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Mon, 23 Feb 2015 15:15:46 +0100 Subject: Avoid incompatibility warning for very old (pre-earmarked) projects --- store.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'store.js') diff --git a/store.js b/store.js index 056767f..8adf7f7 100644 --- a/store.js +++ b/store.js @@ -61,7 +61,7 @@ SyntaxElementMorph, Variable*/ // Global stuff //////////////////////////////////////////////////////// -modules.store = '2015-January-21'; +modules.store = '2015-February-23'; // XML_Serializer /////////////////////////////////////////////////////// @@ -320,7 +320,7 @@ SnapSerializer.prototype.loadProjectModel = function (xmlNode, ide) { var appInfo = xmlNode.attributes.app, app = appInfo ? appInfo.split(' ')[0] : null; - if (ide && app !== this.app.split(' ')[0]) { + if (ide && app && app !== this.app.split(' ')[0]) { ide.inform( app + ' Project', 'This project has been created by a different app:\n\n' + -- cgit v1.3.1