fix: properly fill collectible community data
This commit is contained in:
parent
f57c6a26b5
commit
c17829bf8d
|
@ -692,9 +692,15 @@ func (o *Manager) getCacheFullCollectibleData(uniqueIDs []thirdparty.Collectible
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
communityInfo, err := o.collectiblesDataDB.GetCommunityInfo(id)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
fullData := thirdparty.FullCollectibleData{
|
fullData := thirdparty.FullCollectibleData{
|
||||||
CollectibleData: collectibleData,
|
CollectibleData: collectibleData,
|
||||||
CollectionData: &collectionData,
|
CollectionData: &collectionData,
|
||||||
|
CommunityInfo: communityInfo,
|
||||||
}
|
}
|
||||||
ret = append(ret, fullData)
|
ret = append(ret, fullData)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue