Added www.federalreserve.gov to the blockedReferrerDomains list (#16511)

refs TryGhost/Team#2742

- The federal reserve's website returns a 404 for any URLs that include
query params, so our member attribution/outbound link tagging was
breaking any links to the federal reserve's website
- This adds the federal reserve's website to the list of blocked domains
so that we don't append ?ref= to any links to the federal reserve's
website
This commit is contained in:
Chris Raible 2023-03-27 20:30:35 -07:00 committed by GitHub
parent 349f3b01eb
commit ec966ac3c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

@ -1 +1 @@
Subproject commit 3ed94d68fad71ed5956a9f5f8a29d3bd0ef6c513
Subproject commit 505503a63b51c89c96fcafd18550af29c6c811f1

View File

@ -6,7 +6,8 @@ const blockedReferrerDomains = [
'facebook.com',
'www.facebook.com',
'web.archive.org',
'archive.org'
'archive.org',
'www.federalreserve.gov'
];
/**