Skip to content

Commit

Permalink
Merge pull request pmeenan#8 from 350d/patch-1
Browse files Browse the repository at this point in the history
Update streaming-optimizations.js
  • Loading branch information
pmeenan authored Sep 17, 2019
2 parents 2889bc4 + 18bfbc7 commit 8938c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streaming-optimizations/streaming-optimizations.js
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ function getCacheKey(userAgent) {

// Detect Safari and Webview next
const webkitRegex = /\s+AppleWebKit\/(\d+)/mgi;
match = webkitRegex.exec(userAgent.match);
match = webkitRegex.exec(userAgent);
if (match) {
return 'WebKit' + match[1] + os + mobile;
}
Expand Down

0 comments on commit 8938c2d

Please sign in to comment.