From 5b0d6674dbea138a2829a8fd9fe080dd5e1217f9 Mon Sep 17 00:00:00 2001 From: anekos Date: Tue, 30 Dec 2008 21:01:23 +0900 Subject: [PATCH] s/let/var/ type is used at function block's tail. --- common/content/buffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/buffer.js b/common/content/buffer.js index aff55af2..a972d322 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -678,7 +678,7 @@ function Buffer() //{{{ if (!isFeed) { - let type = data.type && data.type.toLowerCase(); + var type = data.type && data.type.toLowerCase(); type = type.replace(/^\s+|\s*(?:;.*)?$/g, ""); isFeed = (type == "application/rss+xml" || type == "application/atom+xml");