From: Cameron Moore Date: Fri, 17 Feb 2017 16:47:21 +0000 (-0600) Subject: tplimpl: Fix instagram shortcode panic on invalid ID X-Git-Tag: v0.19~62 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d3abb93c;p=brevno-suite%2Fhugo tplimpl: Fix instagram shortcode panic on invalid ID Instagram doesn't return a valid JSON response when the requested ID is invalid or not found. Fixes #3048 --- diff --git a/tpl/tplimpl/template_embedded.go b/tpl/tplimpl/template_embedded.go index 50397b28..abe5937b 100644 --- a/tpl/tplimpl/template_embedded.go +++ b/tpl/tplimpl/template_embedded.go @@ -60,7 +60,7 @@ func (t *GoHTMLTemplate) EmbedShortcodes() { {{ end }}`) t.AddInternalShortcode("gist.html", ``) t.AddInternalShortcode("tweet.html", `{{ (getJSON "https://api.twitter.com/1/statuses/oembed.json?id=" (index .Params 0)).html | safeHTML }}`) - t.AddInternalShortcode("instagram.html", `{{ if len .Params | eq 2 }}{{ if eq (.Get 1) "hidecaption" }}{{ (getJSON "https://api.instagram.com/oembed/?url=https://instagram.com/p/" (index .Params 0) "/&hidecaption=1").html | safeHTML }}{{ end }}{{ else }}{{ (getJSON "https://api.instagram.com/oembed/?url=https://instagram.com/p/" (index .Params 0) "/&hidecaption=0").html | safeHTML }}{{ end }}`) + t.AddInternalShortcode("instagram.html", `{{ if len .Params | eq 2 }}{{ if eq (.Get 1) "hidecaption" }}{{ with getJSON "https://api.instagram.com/oembed/?url=https://instagram.com/p/" (index .Params 0) "/&hidecaption=1" }}{{ .html | safeHTML }}{{ end }}{{ end }}{{ else }}{{ with getJSON "https://api.instagram.com/oembed/?url=https://instagram.com/p/" (index .Params 0) "/&hidecaption=0" }}{{ .html | safeHTML }}{{ end }}{{ end }}`) } func (t *GoHTMLTemplate) EmbedTemplates() {