You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 23, 2019. It is now read-only.
First thanks for the code and tutorial -- they are both very helpful.
Issue:
When logged in as a user and looking at the profile page of another user, the system does not correctly display the number of likes or the common tags.
Potential Cause:
the return call on the get_commonality_of_user method in models.py uses the following syntax:
First thanks for the code and tutorial -- they are both very helpful.
Issue:
Potential Cause:
return graph.run(query, they=other.username, you=self.username).next
Fix:
Modify the return call to be:
return graph.run(query, they=other.username, you=self.username).next()
or wrap it with:
return next(graph.run(query, they=other.username, you=self.username))
The text was updated successfully, but these errors were encountered: