Commit 7f394d03949443d633bc5e40439fd356ee474e66
Better connected to pub message
Anders Rune Jensen committed on 5/12/2017, 7:00:13 PMParent: bff02dfad025baf27f2ed85aa4ef08854a84c8df
Files changed
render.js | changed |
render.js | ||
---|---|---|
@@ -390,9 +390,8 @@ | ||
390 | 390 … | else if (c.type == "issue") { |
391 | 391 … | return '<span class="status">' + |
392 | 392 … | "Created a git issue" + (c.repoName != undefined ? " in repo " + c.repoName : "") + renderPost(opts, c) + |
393 | 393 … | '</span>'; |
394 | - //renderDefault(c); | |
395 | 394 … | } |
396 | 395 … | else if (c.type == "git-update") { |
397 | 396 … | return '<span class="status">' + |
398 | 397 … | "Did a git update " + (c.repoName != undefined ? " in repo " + c.repoName : "") + |
@@ -407,11 +406,10 @@ | ||
407 | 406 … | renderDefault(c); |
408 | 407 … | } |
409 | 408 … | else if (c.type == "pub") { |
410 | 409 … | return '<span class="status">' + |
411 | - "Connected to a pub" + | |
412 | - '</span>' + | |
413 | - renderDefault(c); | |
410 … | + "Connected to the pub " + c.address.host + | |
411 … | + '</span>' | |
414 | 412 … | } |
415 | 413 … | else if (c.type == "channel" && c.subscribed) |
416 | 414 … | return '<span class="status">' + |
417 | 415 … | 'Subscribed to channel <a href="' + base + 'channel/' + |
Built with git-ssb-web