mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 20:38:28 +00:00
Fix bug with Overleaf commits swapping name and email.
This commit is contained in:
parent
6e5163c186
commit
ad7c7a4ba5
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue