mirror of
https://github.com/xHyroM/bun-discord-bot.git
synced 2024-11-21 22:21:05 +01:00
fix(github): closed_at typo
This commit is contained in:
parent
df1f94f3a4
commit
7ecb0a201a
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ async function search(
|
|||
type: item.pull_request ? "🔨" : "🐛",
|
||||
},
|
||||
created_at: new Date(item.created_at),
|
||||
closed_at: item.closed_at ? new Date(item.cloased_at) : null,
|
||||
closed_at: item.closed_at ? new Date(item.closed_at) : null,
|
||||
};
|
||||
|
||||
if (item.pull_request) {
|
||||
|
|
Loading…
Reference in a new issue