Latest Calibre version use | in author name.
This commit is contained in:
parent
33d6abb503
commit
b9687d7f2c
|
@ -21,7 +21,7 @@ class Author extends Base {
|
|||
|
||||
public function __construct($pid, $pname, $psort) {
|
||||
$this->id = $pid;
|
||||
$this->name = $pname;
|
||||
$this->name = str_replace("|", ",", $pname);
|
||||
$this->sort = $psort;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue