Skip to content

Commit d15ea0b

Browse files
authored
Merge pull request #868 from Merit-Systems/rename-featured-exclusions
Rename table reference to featured_exclusions
2 parents f012948 + 2ec5894 commit d15ea0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/scan/src/lib/discover/origins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const getFeaturedExclusions = async (): Promise<Set<string>> => {
5454
const sql = getAgentCashSql();
5555
if (!sql) return new Set();
5656
const rows = (await sql`
57-
SELECT origin_url FROM catalog.blacklisted_origins WHERE scanner = 'x402'
57+
SELECT origin_url FROM catalog.featured_exclusions WHERE scanner = 'x402'
5858
`) as { origin_url: string }[];
5959
return new Set(rows.map(r => String(r.origin_url)));
6060
} catch (error) {

0 commit comments

Comments
 (0)