Skip to content

Commit

Permalink
fix reference error
Browse files Browse the repository at this point in the history
  • Loading branch information
FireLemons committed Feb 5, 2022
1 parent d2a6740 commit e81a163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ async function getIssueLabels (issueNumber) {

const labelsAsObject = {}

for (const label of labelObjectList) {
for (const label of labelObjectList.data) {
labelsAsObject[label.name.toLowerCase()] = true
}

Expand Down

0 comments on commit e81a163

Please sign in to comment.