Browse Source
code review: be case-insensitive, "URL=" is also used sometimes
pull/2/head
Raymond Hill
7 years ago
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with
1 additions and
1 deletions
-
src/js/contentscript.js
|
|
@ -432,7 +432,7 @@ var collapser = (function() { |
|
|
|
if ( noscripts.length === 0 ) { return; } |
|
|
|
|
|
|
|
var redirectTimer, |
|
|
|
reMetaContent = /^\s*(\d+)\s*;\s*url=(['"]?)([^'"]+)\2/, |
|
|
|
reMetaContent = /^\s*(\d+)\s*;\s*url=(['"]?)([^'"]+)\2/i, |
|
|
|
reSafeURL = /^https?:\/\//; |
|
|
|
|
|
|
|
var autoRefresh = function(root) { |
|
|
|