Merge pull request #964 from ajnart/allow-positive-status-codes-by-default

This commit is contained in:
Thomas Camlong
2023-05-21 23:33:41 +09:00
committed by GitHub

View File

@@ -95,8 +95,8 @@ export const AvailableElementTypes = ({
},
network: {
enabledStatusChecker: true,
statusCodes: ['200'],
okStatus: [200],
statusCodes: ['200', '301', '302', '304', '307', '308'],
okStatus: [200, 301, 302, 304, 307, 308],
},
behaviour: {
isOpeningNewTab: true,