projects
/
zzz-floof.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Test suite runs and passes!
[zzz-floof.git]
/
floof
/
controllers
/
users.py
diff --git
a/floof/controllers/users.py
b/floof/controllers/users.py
index
7c24c0f
..
4c9bb9c
100644
(file)
--- a/
floof/controllers/users.py
+++ b/
floof/controllers/users.py
@@
-27,11
+27,12
@@
class UsersController(BaseController):
except NoResultFound:
abort(404)
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')
return render('/users/view.mako')