mirror of
https://github.com/xHyroM/bun-discord-bot.git
synced 2024-11-22 14:41:05 +01:00
fix(githubUtils): add null to setIssue
This commit is contained in:
parent
22a78107d9
commit
07fd5bc8a6
1 changed files with 3 additions and 2 deletions
|
@ -153,7 +153,8 @@ export const setIssue = async(issue: Issue) => {
|
||||||
issue.html_url,
|
issue.html_url,
|
||||||
issue.user_login,
|
issue.user_login,
|
||||||
issue.user_html_url,
|
issue.user_html_url,
|
||||||
'(IS)'
|
'(IS)',
|
||||||
|
null,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -266,4 +267,4 @@ export const formatEmojiStatus = (data: Issue | PullRequest) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return emoji;
|
return emoji;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue