Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion flow/src/org/labkey/flow/controllers/WorkspaceData.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,9 @@
import org.labkey.api.view.HttpView;
import org.labkey.api.view.ViewContext;
import org.labkey.flow.analysis.model.Analysis;
import org.labkey.api.util.SessionHelper;
import org.labkey.api.view.HttpView;
import org.labkey.api.view.ViewContext;
import org.labkey.flow.analysis.model.FlowException;
import org.labkey.flow.analysis.model.ISampleInfo;
import org.labkey.flow.analysis.model.IWorkspace;
Expand DownExpand Up@@ -56,6 +59,7 @@
import java.util.concurrent.TimeUnit;

import static org.labkey.api.action.SpringActionController.ERROR_MSG;
import java.util.concurrent.TimeUnit;

public class WorkspaceData implements Serializable
{
Expand DownExpand Up@@ -86,6 +90,7 @@ public String getPath()

public void setOriginalPath(String path)
{
Map<String, String> ret = new HashMap<>();
if (path != null)
{
path = PageFlowUtil.decode(path);
Expand DownExpand Up@@ -350,7 +355,8 @@ private void addCaseSensitiveWarnings(Errors errors, List<String> messages, bool
for (String msg : messages)
errors.reject(ERROR_MSG, msg);
}
else

if (_object != null && token == null)
{
_object.getWarnings().addAll(messages);
}
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -40,6 +40,7 @@
import org.labkey.api.assay.AssayFileWriter;
import org.labkey.api.util.PageFlowUtil;
import org.labkey.api.util.Pair;
import org.labkey.api.util.SessionHelper;
import org.labkey.api.util.URIUtil;
import org.labkey.api.util.URLHelper;
import org.labkey.api.view.ActionURL;
Expand Down