enhancement: Google search only supports 4 countries #23
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Parent: #3
Description
In
sites/google/google.go:67-81, the country parameter mapping only supports 4 countries:Any other country code is silently ignored. Google supports many more country codes (DE, FR, JP, BR, IN, etc.).
Fix
Either:
country = "country" + strings.ToUpper(c.Country)Starting work on this. Will replace the 4-country switch with dynamic
"country" + strings.ToUpper(c.Country)generation.Work finished — replaced 4-country switch with
"country" + strings.ToUpper(c.Country)to support all Google country codes. Merged in PR #42.Resolved by PR #42 — replaced 4-country switch with dynamic country code generation.