From ad755e0d8e4db1ac3bcc16d354feeded6e823164 Mon Sep 17 00:00:00 2001 From: Matteo Cargnelutti Date: Tue, 11 Apr 2023 12:54:44 -0400 Subject: [PATCH] Remove "noarchive" detection capture step Now handled at `ScoopProxy` level. --- Scoop.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Scoop.js b/Scoop.js index 3e954ba0..9413e41e 100644 --- a/Scoop.js +++ b/Scoop.js @@ -385,19 +385,6 @@ export class Scoop { }) } - // Push step: noarchive directive detection - // TODO: Move this logic back to ScoopProxy.intercept() when new proxy implementation is ready. - steps.push({ - name: 'Detecting "noarchive" directive', - alwaysRun: true, - webPageOnly: true, - main: async () => { - for (const exchange of this.intercepter.exchanges) { - this.intercepter.checkExchangeForNoArchive(exchange) - } - } - }) - // Push step: certs capture if (options.captureCertificatesAsAttachment) { steps.push({