We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 680114d commit fdfffc3Copy full SHA for fdfffc3
EnrichmentMapPlugin/src/main/java/org/baderlab/csplugins/enrichmentmap/rest/UploadFileResource.java
@@ -79,6 +79,7 @@ public Response uploadFile(
79
}
80
81
String absPath = tempFile.getAbsolutePath();
82
+ absPath = absPath.replace("\\", "\\\\");
83
String response = String.format("{\"path\" : \"%s\"}", absPath);
84
return Response.status(200).entity(response).build();
85
0 commit comments