Skip Menu |

This queue is for tickets about the Geo-Google CPAN distribution.

Report information
The Basics
Id: 31172
Status: new
Priority: 0/
Queue: Geo-Google

People
Owner: Nobody in particular
Requestors: wruppert [...] responseb2b.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.05
Fixed in: (no value)



Subject: Unable to locate the JSON format data...
A couple of weeks ago, the module started to fail on every address given to it with the error "Unable to locate the JSON format data in google's response." I believe the problem is due to the fact that Google has removed the space after the comma between function parameters in loadVPage, rendering the extracting regular expression incorrect. I'm afraid I'm not experienced with using patch, but all I did to fix it was add a question mark after that space in the re on line 265 of Google.pm v0.05 as follows: was: m#loadVPage\((.+), "\w+"\);}//]]>#is now: m#loadVPage\((.+), ?"\w+"\);}//]]>#is