Skip to content

Commit

Permalink
Fix path of new option
Browse files Browse the repository at this point in the history
  • Loading branch information
e-marchand committed Jan 14, 2024
1 parent 246a94c commit 66eb361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ProjectEditor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class ProjectEditor(projectEditorFile: File, val catalogDef: CatalogDef, isCreat
"debugMode" -> jsonObj.getSafeBoolean(DEBUG_MODE_KEY)
"canUseLocalSource" -> jsonObj.getSafeBoolean(LOCAL_SOURCE)
"pushNotification" -> jsonObj.getSafeObject(PROJECT_KEY)?.getSafeObject(SERVER_KEY)?.getSafeBoolean(PUSH_NOTIFICATION)
"editActionHasUniqueTask" -> jsonObj.getSafeObject(EXTRA_KEY)?.getSafeBoolean("editActionHasUniqueTask")
"editActionHasUniqueTask" -> jsonObj.getSafeObject(PROJECT_KEY)?.getSafeObject(EXTRA_KEY)?.getSafeBoolean("editActionHasUniqueTask")
else -> null
}
}
Expand Down

0 comments on commit 66eb361

Please sign in to comment.