diff --git a/src/Entity/Browser/Container/Tab/Page/Content.php b/src/Entity/Browser/Container/Tab/Page/Content.php index 76f4e10..508ea5c 100644 --- a/src/Entity/Browser/Container/Tab/Page/Content.php +++ b/src/Entity/Browser/Container/Tab/Page/Content.php @@ -233,7 +233,11 @@ class Content ); $this->page->title->setValue( - $title ? $title : $address->getHost(), // detect title by document h1 + $title ? sprintf( + '%s - %s', + $title, + $address->getHost() + ) : $address->getHost(), // detect title by document h1 $response->getMeta() );