File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -824,11 +824,11 @@ async function pageSingleCrawlHandle(
824824 let notError = true
825825 try {
826826 if ( detailTargetConfig . proxyUrl ) {
827- await browser . createIncognitoBrowserContext ( {
827+ await browser . createBrowserContext ( {
828828 proxyServer : detailTargetConfig . proxyUrl
829829 } )
830830 } else {
831- await browser . createIncognitoBrowserContext ( {
831+ await browser . createBrowserContext ( {
832832 proxyServer : undefined
833833 } )
834834 }
@@ -976,8 +976,8 @@ function dataSingleResultHandle(
976976 const data = contentType . includes ( 'application/json' )
977977 ? JSON . parse ( detailTargetResult . data . toString ( ) )
978978 : contentType . includes ( 'text' )
979- ? detailTargetResult . data . toString ( )
980- : detailTargetResult . data
979+ ? detailTargetResult . data . toString ( )
980+ : detailTargetResult . data
981981
982982 result . data = { ...detailTargetResult , data }
983983 }
You can’t perform that action at this time.
0 commit comments