mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Added postback key to files.
This commit is contained in:
parent
df751500c5
commit
28e0d8cd42
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ public class WLDirectoryNodeSnapshot implements CandidateSnapshot {
|
|||
JsonObject file = new JsonObject();
|
||||
file.addProperty("name", fileNode.getFilePath());
|
||||
if (fileNode.isChanged()) {
|
||||
file.addProperty("url", projectURL + "/" + fileNode.getFilePath());
|
||||
file.addProperty("url", projectURL + "/" + fileNode.getFilePath() + "?key=" + postbackKey);
|
||||
}
|
||||
return file;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue