Commit 55f99e6
authored
fix(scully-plugin-puppeteer): correctly track requests in bare project (#1610)
Previously, instead of adding/removing each request from the `requests`
set, the set itself was added/removed. Since `Set` deduplicates its
values, it would always contain just one item (regardless of how many
requests would be pending) and it would be emptied once the first
request was completed.
This commit fixes this by adding/removing the actual request to/from the
`requests` set.1 parent 7463e05 commit 55f99e6
1 file changed
Lines changed: 2 additions & 2 deletions
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments