Skip to content

Commit

Permalink
fix fc name
Browse files Browse the repository at this point in the history
  • Loading branch information
vekien committed Nov 19, 2020
1 parent b9985b2 commit 368d35a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lodestone/Parser/ParseCharacter.php
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ private function parseProfileGrandCompany($node)
private function parseProfileFreeCompany($node)
{
$this->profile->FreeCompanyId = $this->getLodestoneId($node);
$this->profile->FreeCompanyName = trim($node->text());
$this->profile->FreeCompanyName = trim($node->find('a')->text());
}

/**
Expand Down

0 comments on commit 368d35a

Please sign in to comment.