Skip to content

Commit d19b5e4

Browse files
committed
Fix electron environment detection
1 parent c96e8dd commit d19b5e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CoreManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ var config: { [key: string]: mixed } = {
121121
IS_NODE: (typeof process !== 'undefined' &&
122122
!!process.versions &&
123123
!!process.versions.node &&
124-
!process.version.electron),
124+
!process.versions.electron),
125125
REQUEST_ATTEMPT_LIMIT: 5,
126126
SERVER_URL: 'https://api.parse.com/1',
127127
LIVEQUERY_SERVER_URL: null,

0 commit comments

Comments
 (0)