mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 05:41:33 +02:00
Fix bug with Overleaf commits swapping name and email.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user