aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/serve.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/serve.js b/lib/serve.js
index e8a8c91..13d3fc5 100644
--- a/lib/serve.js
+++ b/lib/serve.js
@@ -2231,6 +2231,7 @@ Serve.prototype.gitDiffTable = function (diff, lineComments, lineCommentInfo) {
id: id,
line: newLineNum,
updateId: updateMsg.key,
+ blobId: hash,
repoId: updateMsg.value.content.repo,
commitId: lineCommentInfo.commit,
filePath: lineCommentInfo.path,
@@ -2717,6 +2718,7 @@ Serve.prototype.wrapBinary = function (opts) {
updateId: updateMsg.key,
repoId: updateMsg.value.content.repo,
commitId: commitId,
+ blobId: hash,
filePath: filePath,
})
)
@@ -3113,6 +3115,7 @@ Serve.prototype.composer = function (opts, cb) {
content.repo = opts.lineComment.repoId
content.commitId = opts.lineComment.commitId
content.filePath = opts.lineComment.filePath
+ content.blobId = opts.lineComment.blobId
content.line = opts.lineComment.line
}
var mentions = ssbMentions(data.text, {bareFeedNames: true, emoji: true})