fix incorrect condition

should have tested!
This commit is contained in:
Joseph
2024-02-24 11:23:48 +00:00
parent bbd58324d8
commit 49794b3db4

View File

@ -474,7 +474,7 @@ func infoFromURL(
filteredEntrise = append(filteredEntrise, ee)
}
continue
} else if e.ID == "" {
} else if e.ID != "" {
filteredEntrise = append(filteredEntrise, e)
}
}