mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-28 05:52:49 +03:00
profiles: catches error case
This commit is contained in:
parent
acbadad710
commit
0c1faa991a
13
server.js
13
server.js
@ -58,12 +58,13 @@ app.prepare().then(async () => {
|
||||
|
||||
return app.render(req, res, "/profile", {
|
||||
viewer,
|
||||
creator: creator
|
||||
? {
|
||||
username: creator.username,
|
||||
data: { photo: creator.data.photo },
|
||||
}
|
||||
: null,
|
||||
creator:
|
||||
creator && !creator.error
|
||||
? {
|
||||
username: creator.username,
|
||||
data: { photo: creator.data.photo },
|
||||
}
|
||||
: null,
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user