mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 08:00:03 +00:00
Extracted project name properly from uri.
This commit is contained in:
parent
48305d963f
commit
ccf17f9867
1 changed files with 2 additions and 1 deletions
|
@ -37,7 +37,8 @@ public class SnapshotPushPostbackHandler extends AbstractHandler {
|
|||
}
|
||||
String data = sb.toString();
|
||||
JsonObject dataObj = new Gson().fromJson(data, JsonObject.class);
|
||||
writeLatexDataSource.postbackReceivedSuccessfully(request.getRequestURI().split("/")[0]);
|
||||
System.out.println(request.getRequestURI());
|
||||
writeLatexDataSource.postbackReceivedSuccessfully(request.getRequestURI().split("/")[1]);
|
||||
baseRequest.setHandled(true);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue