diff --git a/main/src/com/google/refine/commands/project/CreateProjectCommand.java b/main/src/com/google/refine/commands/project/CreateProjectCommand.java index 52a8e47d3..ece7ef28f 100644 --- a/main/src/com/google/refine/commands/project/CreateProjectCommand.java +++ b/main/src/com/google/refine/commands/project/CreateProjectCommand.java @@ -106,7 +106,7 @@ public class CreateProjectCommand extends Command { } JSONObject optionObj = null; - String optionsString = request.getParameter("options"); + String optionsString = parameters.getProperty("options"); if (optionsString != null && !optionsString.isEmpty()) { optionObj = ParsingUtilities.evaluateJsonStringToObject(optionsString); } else {