From 4f80ea50b773d1995985e35a8a63806516c353c4 Mon Sep 17 00:00:00 2001 From: Ben Balter Date: Tue, 2 May 2017 09:42:21 -0400 Subject: [PATCH] fix for calling delete! on NiLClass --- lib/jekyll-seo-tag/drop.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll-seo-tag/drop.rb b/lib/jekyll-seo-tag/drop.rb index 06fe3a2..228bc3c 100644 --- a/lib/jekyll-seo-tag/drop.rb +++ b/lib/jekyll-seo-tag/drop.rb @@ -88,7 +88,7 @@ module Jekyll end author["twitter"] ||= author["name"] - author["twitter"].delete! "@" + author["twitter"].delete! "@" if author["twitter"] author.to_liquid end end