Fix FacebookBridge title building after merging

This commit is contained in:
Pellaeon Lin 2017-02-21 17:26:40 +08:00
parent 8658d93ec5
commit 01c1691349

View File

@ -272,11 +272,6 @@ EOD;
}
public function getName(){
if(!empty($this->authorName)){
return isset($this->extraInfos['name']) ? $this->extraInfos['name'] : $this->authorName
. ' - Facebook Bridge';
}
return parent::getName();
return isset($this->extraInfos['name']) ? $this->extraInfos['name'] : $this->authorName.' - Facebook Bridge';
}
}