Skip to content

Commit 80d898a

Browse files
committed
fix(striped backups): typo - compare with y not x
1 parent 110aaff commit 80d898a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/BackupMetadata.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public bool Equals(BackupMetadata x, BackupMetadata y)
1414
x.BackupType == y.BackupType &&
1515
x.DatabaseName == y.DatabaseName &&
1616
x.CheckpointLsn == y.CheckpointLsn &&
17-
x.DatabaseBackupLsn == x.DatabaseBackupLsn;
17+
x.DatabaseBackupLsn == y.DatabaseBackupLsn;
1818
}
1919

2020
public int GetHashCode(BackupMetadata obj)

0 commit comments

Comments
 (0)