diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-01 00:46:43 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-01 00:46:43 +0900 |
| commit | 65ff027ca9f8b3c4f3f302503d4447e5726a4384 (patch) | |
| tree | 1fa6cacb148f8932eb94dc6874b9e216ff94f272 /src/api/service/github.ts | |
| parent | やった (diff) | |
| download | sharkey-65ff027ca9f8b3c4f3f302503d4447e5726a4384.tar.gz sharkey-65ff027ca9f8b3c4f3f302503d4447e5726a4384.tar.bz2 sharkey-65ff027ca9f8b3c4f3f302503d4447e5726a4384.zip | |
Fix url
Diffstat (limited to 'src/api/service/github.ts')
| -rw-r--r-- | src/api/service/github.ts | 2 |
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); }); }; |