git ssb

16+

Dominic / patchbay



Commit 4f805f442d6775913d8beb9c969b08250e508767

channel bug fix!

mix irving committed on 3/21/2017, 3:29:00 AM
Parent: 70fb8c8a016f2f59cb6933d6505c3d65dd426581

Files changed

router/html/page/channel.jschanged
router/html/page/channel.jsView
@@ -19,9 +19,9 @@
1919 exports.create = function (api) {
2020 return nest('router.html.page', channelView)
2121
2222 function channelView (path) {
23- if (path[0] !== '#') return
23+ if (path && !path.match(/#\w+/)) return
2424
2525 var channel = path.substr(1)
2626
2727 var composer = api.message.html.compose({ meta: { type: 'post', channel } })

Built with git-ssb-web