git ssb

3+

ev / decent



Commit dbf97a4cbbab26baf350020a6c94bb0c17c5adf2

correct path condition for hashtag search

Ev Bogue committed on 10/15/2017, 4:29:21 PM
Parent: ded598978fb6fc7a0863a640736660df43649a59

Files changed

client/modules/search.jschanged
client/modules/search.jsView
@@ -69,9 +69,9 @@
6969 }
7070
7171 exports.create = function (api) {
7272 return function (path) {
73- if(path[0] === '?' || '##') {
73 + if((path[0] === '?') || (path[1] === '#')) {
7474 console.log('SEARCHING for ' + path)
7575 var queryStr = path
7676 if (queryStr[0] === '?') {
7777 queryStr = queryStr.substring(1).trim()

Built with git-ssb-web