Skip to content

Commit

Permalink
fix: 🐛 improper categorization
Browse files Browse the repository at this point in the history
fixes #29
  • Loading branch information
AlecBlance committed Oct 26, 2024
1 parent c64d4ec commit db2adef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/recorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ const getPerms = ($: cheerio.CheerioAPI, hostname: string) => {
permissions[title] = [...(permissions[title] || []), perm];
});
type = "good";
}
if (hasListBucket.length) {
} else if (hasListBucket.length) {
permissions["ListBucket"] = ["True"];
type = "good";
} else if (hasCode.length) {
Expand Down

0 comments on commit db2adef

Please sign in to comment.