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();
|
JsonObject file = new JsonObject();
|
||||||
file.addProperty("name", fileNode.getFilePath());
|
file.addProperty("name", fileNode.getFilePath());
|
||||||
if (fileNode.isChanged()) {
|
if (fileNode.isChanged()) {
|
||||||
file.addProperty("url", projectURL + "/" + fileNode.getFilePath());
|
file.addProperty("url", projectURL + "/" + fileNode.getFilePath() + "?key=" + postbackKey);
|
||||||
}
|
}
|
||||||
return file;
|
return file;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue