Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Fix site_name
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Peters committed Apr 21, 2017
1 parent e955d95 commit 053741b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Command/MakeShareButtons.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function handle(
$shares = '';
$title = isset($this->params['title']) ? $this->params['title'] : $template['meta_title'];
$description = isset($this->params['description']) ? $this->params['description'] : $template['meta_description'];
$site_name = $config->get('streams::distribution.name');
$site_name = $config->get('app.name');

$data = [
'url' => $url,
Expand Down
2 changes: 1 addition & 1 deletion src/Command/MakeShareData.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function handle(
$shares = '';
$title = isset($this->params['title']) ? $this->params['title'] : $template['meta_title'];
$description = isset($this->params['description']) ? $this->params['description'] : $template['meta_description'];
$site_name = $config->get('streams::distribution.name');
$site_name = $config->get('app.name');

$data = [
'facebook' => [
Expand Down

0 comments on commit 053741b

Please sign in to comment.