Quote:
Originally Posted by infnity8x3
For google maps, Its becuase they use https now instead of just http...
So just edit the Regular expression in google maps definition and add a s after http so it reads like this
Code:
https://maps\.google\.com[\w.]*/[maps]*\?[\w]*=[\w+&;='%,.-]+
works for me
But whats up with facebook? and ebay?
|
I suggest whenever updating a regex from http to https you add an asterisks after the s, so:
Code:
https*://maps\.google\.com[\w.]*/[maps]*\?[\w]*=[\w+&;='%,.-]+
That means it will work with our without the s in the URL.