Fix bug with Overleaf commits swapping name and email.

This commit is contained in:
Winston Li 2015-02-22 10:41:21 +00:00
parent 6e5163c186
commit ad7c7a4ba5

View file

@ -13,7 +13,7 @@ public class SnapshotInfo implements Comparable<SnapshotInfo> {
private String createdAt;
public SnapshotInfo(int versionID, String createdAt, String name, String email) {
this(versionID, "Update on " + Util.getServiceName() + ".", name, email, createdAt);
this(versionID, "Update on " + Util.getServiceName() + ".", email, name, createdAt);
}
public SnapshotInfo(int versionID, String comment, String email, String name, String createdAt) {