fix(communities)_: fix curated comm fetch not starting for unknown comm (#5110) (#5111)

This commit is contained in:
Jonathan Rainville 2024-05-03 13:17:11 -04:00 committed by GitHub
parent 8a0b7ddbb5
commit 9c2c638aaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -743,7 +743,7 @@ func (m *Manager) GetStoredDescriptionForCommunities(communityIDs []string) (*Kn
}
community, err := m.GetByID(types.HexBytes(communityIDBytes))
if err != nil {
if err != nil && err != ErrOrgNotFound {
return nil, err
}