except NoResultFound:
abort(404)
- rels = UserRelationship.query.filter_by(
- user_id=c.user.id,
- target_user_id=c.this_user.id,
- ).all()
+ if c.user:
+ rels = UserRelationship.query.filter_by(
+ user_id=c.user.id,
+ target_user_id=c.this_user.id,
+ ).all()
- c.relationships = [_.type for _ in rels]
+ c.relationships = [_.type for _ in rels]
return render('/users/view.mako')