summaryrefslogtreecommitdiff
path: root/src/api/service/github.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/service/github.ts')
-rw-r--r--src/api/service/github.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/service/github.ts b/src/api/service/github.ts
index 8f7efc8ad4..25f0c9d9ab 100644
--- a/src/api/service/github.ts
+++ b/src/api/service/github.ts
@@ -35,7 +35,7 @@ module.exports = async (app: express.Application) => {
case 'closed': title = 'Issueが閉じられました'; break;
case 'reopened': title = 'Issueが開きました'; break;
}
- const text = `${title}: ${event.payload.issue.number}「${event.payload.issue.title}」\n${event.payload.issue.url}`;
+ const text = `${title}: ${event.payload.issue.number}「${event.payload.issue.title}」\n${event.payload.issue.html_url}`;
post(text);
});
};