Compare commits

..

No commits in common. "master" and "v0.1.0" have entirely different histories.

3 changed files with 4 additions and 10 deletions

1
.gitignore vendored
View file

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

View file

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

View file

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