Commit 073a230fd02b316ecac6190c31ba3ba55e610af0
remove logging
Dominic Tarr committed on 12/4/2016, 4:09:50 PMParent: 4867d771b3d4e27e3e132a5f65ecdfb8990fe925
Files changed
modules_extra/notifications.js | changed |
modules_extra/notifications.js | |||
---|---|---|---|
@@ -48,11 +48,9 @@ | |||
48 | 48 … | function isOurMsg(id, cb) { | |
49 | 49 … | if (!id) return cb(null, false) | |
50 | 50 … | if (typeof id === 'object' && typeof id.link === 'string') id = id.link | |
51 | 51 … | if (!ref.isMsg(id)) return cb(null, false) | |
52 | - console.log('LOOKUP', id) | ||
53 | 52 … | api.sbot_get(id, function (err, msg) { | |
54 | - console.log('FOUND', msg) | ||
55 | 53 … | if (err && err.name == 'NotFoundError') cb(null, false) | |
56 | 54 … | else if (err) cb(err) | |
57 | 55 … | else if (msg.content.type === 'issue' || msg.content.type === 'pull-request') | |
58 | 56 … | isOurMsg(msg.content.repo || msg.content.project, cb) | |
@@ -71,12 +69,10 @@ | |||
71 | 69 … | }) | |
72 | 70 … | } | |
73 | 71 … | ||
74 | 72 … | return paramap(function (msg, cb) { | |
75 | - console.log("LOOKUP", msg) | ||
76 | 73 … | var c = msg.value && msg.value.content | |
77 | 74 … | if (!c || typeof c !== 'object') return cb() | |
78 | - console.log(msg.value.author, ourIds) | ||
79 | 75 … | if (msg.value.author in ourIds) return cb() | |
80 | 76 … | ||
81 | 77 … | if (c.mentions && Array.isArray(c.mentions) && c.mentions.some(linksToUs)) | |
82 | 78 … | return cb(null, msg) | |
@@ -134,9 +130,8 @@ | |||
134 | 130 … | getFirstMessage(id, function (err, msg) { | |
135 | 131 … | if (err) return console.error(err) | |
136 | 132 … | if (!oldest || msg.value.timestamp < oldest) { | |
137 | 133 … | oldest = msg.value.timestamp | |
138 | - console.log('OLDEST', msg) | ||
139 | 134 … | } | |
140 | 135 … | }) | |
141 | 136 … | ||
142 | 137 … | var content = h('div.column.scroller__content') | |
@@ -161,9 +156,8 @@ | |||
161 | 156 … | notifications(ids), | |
162 | 157 … | pull.filter(), | |
163 | 158 … | pull.take(function (msg) { | |
164 | 159 … | // abort stream after we pass the oldest messages of our feeds | |
165 | - console.log('old?', msg.value.timestamp, oldest) | ||
166 | 160 … | return !oldest ? true : msg.value.timestamp > oldest | |
167 | 161 … | }), | |
168 | 162 … | Scroller(div, content, api.message_render, false, false) | |
169 | 163 … | ) | |
@@ -173,6 +167,4 @@ | |||
173 | 167 … | } | |
174 | 168 … | } | |
175 | 169 … | } | |
176 | 170 … | ||
177 | - | ||
178 | - |
Built with git-ssb-web