From 69a0acd5547ddf160396a9f8af79fa1ccfb7f232 Mon Sep 17 00:00:00 2001 From: abe33 Date: Mon, 16 Nov 2015 10:06:35 +0100 Subject: [PATCH 1/2] :bug: Fix typo in project deserializer method Addresses #9598 --- src/project.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/project.coffee b/src/project.coffee index 935e3a213..bb9c8be80 100644 --- a/src/project.coffee +++ b/src/project.coffee @@ -55,7 +55,7 @@ class Project extends Model ### deserialize: (state, deserializerManager) -> - states.paths = [state.path] if state.path? # backward compatibility + state.paths = [state.path] if state.path? # backward compatibility @buffers = _.compact state.buffers.map (bufferState) -> # Check that buffer's file path is accessible From fb5b1ba7f394e7c970d04d29af551d81c2fd277b Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Thu, 19 Nov 2015 07:13:37 -0800 Subject: [PATCH 2/2] 1.2.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f0914b69..cd970440d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "atom", "productName": "Atom", - "version": "1.2.2", + "version": "1.2.3", "description": "A hackable text editor for the 21st Century.", "main": "./src/browser/main.js", "repository": {