NoAcctUriException->profile not $e directly
This commit is contained in:
parent
a361fdbd77
commit
543d968b81
@ -108,7 +108,7 @@ class ToSelector extends Widget
|
|||||||
try {
|
try {
|
||||||
$choices[$value] = substr($users->getAcctUri(), 5) . " [{$users->getBestName()}]";
|
$choices[$value] = substr($users->getAcctUri(), 5) . " [{$users->getBestName()}]";
|
||||||
} catch (ProfileNoAcctUriException $e) {
|
} catch (ProfileNoAcctUriException $e) {
|
||||||
$choices[$value] = "[?@?] " . $e->getBestName();
|
$choices[$value] = "[?@?] " . $e->profile->getBestName();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,7 +118,7 @@ class ToSelector extends Widget
|
|||||||
try {
|
try {
|
||||||
$choices[$value] = substr($this->to->getAcctUri(), 5) . " [{$this->to->getBestName()}]";
|
$choices[$value] = substr($this->to->getAcctUri(), 5) . " [{$this->to->getBestName()}]";
|
||||||
} catch (ProfileNoAcctUriException $e) {
|
} catch (ProfileNoAcctUriException $e) {
|
||||||
$choices[$value] = "[?@?] " . $e->getBestName();
|
$choices[$value] = "[?@?] " . $e->profile->getBestName();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user