Skip to content

Commit

Permalink
Update requests.sql (#1285)
Browse files Browse the repository at this point in the history
  • Loading branch information
rviscomi authored and sudheendrachari committed Sep 15, 2020
1 parent d4286b1 commit bbfe480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/util/requests.sql
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ LANGUAGE js AS """
return 'script';
} else if (['eot', 'ttf', 'woff', 'woff2', 'otf'].includes(ext)) {
return 'font';
} else if (['png', 'gif', 'jpg', 'jpeg', 'webp', 'ico', 'svg']) {
} else if (['png', 'gif', 'jpg', 'jpeg', 'webp', 'ico', 'svg'].includes(ext)) {
return 'image';
} else if (['css', 'xml'].includes(ext)) {
return ext;
Expand Down Expand Up @@ -194,4 +194,4 @@ SELECT
getSummary(payload).*,
payload
FROM
`httparchive.requests.2020_08_01_*`
`httparchive.requests.2020_08_01_*`

0 comments on commit bbfe480

Please sign in to comment.