1
0
mirror of synced 2024-11-24 06:20:12 +01:00

Fix data API unable to look up profiles after update to profile object.

This commit is contained in:
Jennifer Taylor 2021-08-20 04:44:34 +00:00
parent 35a09ad277
commit 97bea03abe

View File

@ -126,6 +126,6 @@ class ProfileObject(BaseObject):
if settings is None:
settings = ValidatedDict({})
retval.append(self.__format_profile(id_to_cards[userid], profile, settings, profile['version'] == self.version))
retval.append(self.__format_profile(id_to_cards[userid], profile, settings, profile.version == self.version))
return retval