浏览代码

fix socialmeta on pages with no desc

George Baugh 3 年之前
父节点
当前提交
2c41c2e850
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/Trog/Routes/HTML.pm

+ 1 - 1
lib/Trog/Routes/HTML.pm

@@ -245,7 +245,7 @@ sub _build_social_meta ($query,$title) {
     $default_tags .= ','.join(',',@{$query->{primary_post}->{tags}}) if $default_tags && $query->{primary_post}->{tags};
 
     my $meta_desc  = $query->{primary_post}{data} // $Theme::description // "tCMS Site";
-    $meta_desc = Trog::Utils::strip_and_trunc($meta_desc);
+    $meta_desc = Trog::Utils::strip_and_trunc($meta_desc) || '';
 
     my $meta_tags = '';
     my $card_type = 'summary';