Compare commits

..

3 commits

3 changed files with 10 additions and 4 deletions

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
vendor/ vendor/
composer.lock
node_modules/ node_modules/
__pycache__/ __pycache__/

View file

@ -1,7 +1,7 @@
{ {
"name": "yusurko/useragent", "name": "yusurko/useragent",
"type": "library", "type": "library",
"version": "0.1.0", "version": "0.1.2",
"license": "Apache-2.0", "license": "Apache-2.0",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
@ -14,5 +14,7 @@
"email": "sakuragasaki46@gmail.com" "email": "sakuragasaki46@gmail.com"
} }
], ],
"require": {} "require": {
"phpseclib/phpseclib": "^3.0"
}
} }

View file

@ -194,9 +194,12 @@ a:link, a:visited {color: #39f}
public function getCountry() { public function getCountry() {
if ($this->country === null) { if ($this->country === null) {
if ($this->locator === null) $this->locator = $this->probeLocator(); if ($this->locator === null) $this->locator = $this->probeLocator();
if ($this->locator === false) $this->country = Country::outerSpace(); if ($this->locator === false) {
$this->country = Country::outerSpace();
} else {
$this->country = $this->locator->locate($this->getAddr()); $this->country = $this->locator->locate($this->getAddr());
} }
}
return $this->country; return $this->country;
} }