Skip to content

Commit

Permalink
domains: ignore 202 response code for c-span.org
Browse files Browse the repository at this point in the history
  • Loading branch information
iparamonau committed Jan 15, 2025
1 parent bb7400f commit 5ea02d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/domains/c-span.org/c-span.org.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default {
},

getData: function(url, __statusCode, options, cb) {
if (__statusCode === 403) {
if (__statusCode === 403 || __statusCode === 202) {
// Ignore...
return cb(null, null);

Expand Down

0 comments on commit 5ea02d9

Please sign in to comment.