Commit fe195d78c8c4fadba1362945cf2e75864ca3dcad
this seems to fix the error where repos without names break the client
Ev Bogue committed on 9/11/2018, 9:46:45 PMParent: dc1304ab1631436b1012adfabae47ade15c61235
Files changed
render.js | changed |
render.js | ||
---|---|---|
@@ -106,9 +106,9 @@ | ||
106 | 106 | //if (err) throw err |
107 | 107 | if (data.content.name) { |
108 | 108 | actualname = h('p', 'pushed to ', h('a', {href: '#' + msg.value.content.repo}, '%' + data.content.name)) |
109 | 109 | reponame.parentNode.replaceChild(actualname, reponame) |
110 | - } | |
110 | + } else { console.log('no repo name') } | |
111 | 111 | }) |
112 | 112 | ) |
113 | 113 | message.appendChild(cloneurl) |
114 | 114 |
Built with git-ssb-web