Commit 85e7dfc62d7132231fe48fc18a0202c70b3e9d7a
quick fix to protect against new about messages
mix irving committed on 4/30/2017, 11:38:16 AMParent: 981bec0fa38746dc547305145563bddee81a5d41
Files changed
app/html/page/notifications.js | changed |
app/html/page/profile.js | changed |
app/html/page/public.js | changed |
message/html/render/about.js | changed |
app/html/page/notifications.js | ||
---|---|---|
@@ -30,9 +30,9 @@ | ||
30 | 30 … | |
31 | 31 … | return nest({ |
32 | 32 … | 'app.html': { |
33 | 33 … | page: notificationsPage, |
34 | - menuItem: menuItem | |
34 … | + menuItem | |
35 | 35 … | } |
36 | 36 … | }) |
37 | 37 … | |
38 | 38 … | function menuItem () { |
app/html/page/profile.js | ||
---|---|---|
@@ -8,18 +8,18 @@ | ||
8 | 8 … | exports.gives = nest({ |
9 | 9 … | 'app.html': { |
10 | 10 … | page: true, |
11 | 11 … | menuItem: true |
12 | - }, | |
13 | - 'app.sync.goTo': 'first', | |
12 … | + } | |
14 | 13 … | }) |
15 | 14 … | |
16 | 15 … | exports.needs = nest({ |
17 | 16 … | 'about': { |
18 | 17 … | 'html.edit': 'first', |
19 | 18 … | 'obs.name': 'first' |
20 | 19 … | }, |
21 | 20 … | 'app.html.scroller': 'first', |
21 … | + 'app.sync.goTo': 'first', | |
22 | 22 … | 'contact.html.relationships': 'first', |
23 | 23 … | 'keys.sync.id': 'first', |
24 | 24 … | 'message.html.render': 'first', |
25 | 25 … | 'sbot.pull.userFeed': 'first' |
app/html/page/public.js | |||
---|---|---|---|
@@ -7,17 +7,17 @@ | |||
7 | 7 … | exports.gives = nest({ | |
8 | 8 … | 'app.html': { | |
9 | 9 … | page: true, | |
10 | 10 … | menuItem: true | |
11 | - }, | ||
12 | - 'app.sync.goTo': 'first' | ||
11 … | + } | ||
13 | 12 … | }) | |
14 | 13 … | ||
15 | 14 … | exports.needs = nest({ | |
16 | 15 … | 'app.html': { | |
17 | 16 … | filter: 'first', | |
18 | 17 … | scroller: 'first' | |
19 | 18 … | }, | |
19 … | + 'app.sync.goTo': 'first', | ||
20 | 20 … | 'feed.pull.public': 'first', | |
21 | 21 … | 'message.html': { | |
22 | 22 … | compose: 'first', | |
23 | 23 … | render: 'first' | |
@@ -29,9 +29,9 @@ | |||
29 | 29 … | ||
30 | 30 … | return nest({ | |
31 | 31 … | 'app.html': { | |
32 | 32 … | page: publicPage, | |
33 | - menuItem: menuItem | ||
33 … | + menuItem | ||
34 | 34 … | } | |
35 | 35 … | }) | |
36 | 36 … | ||
37 | 37 … | function menuItem () { |
message/html/render/about.js | ||
---|---|---|
@@ -29,11 +29,13 @@ | ||
29 | 29 … | } |
30 | 30 … | |
31 | 31 … | function renderContent (msg) { |
32 | 32 … | const { author, content } = msg.value |
33 | - var { about, name, description, image } = content | |
33 … | + var { about, link, name, description, image } = content | |
34 | 34 … | |
35 … | + // TODO : build better normalizers | |
35 | 36 … | if (image && ref.isBlob(image.link)) image = image.link |
37 … | + about = about || link | |
36 | 38 … | |
37 | 39 … | if (!ref.isFeed(about)) { |
38 | 40 … | return [ |
39 | 41 … | 'Describes ', |
Built with git-ssb-web