Fix oops, add simple UT

This commit is contained in:
Till Faelligen 2022-11-11 16:44:59 +01:00
parent 72ce6acf71
commit e177e0ae73
No known key found for this signature in database
GPG key ID: ACCDC9606D472758
2 changed files with 57 additions and 1 deletions

View file

@ -111,7 +111,7 @@ func (d *Database) eventStateKeyNIDs(
result[eventStateKey] = nid
}
// We received some nids, but are still missing some, work out which and create them
if len(eventStateKeys) < len(result) {
if len(eventStateKeys) > len(result) {
for _, eventStateKey := range eventStateKeys {
if _, ok := result[eventStateKey]; ok {
continue