From 372e1518f84f48b5d620858a5d453158de409c03 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 8 Jan 2011 14:06:36 -0500 Subject: [PATCH] Fix buffer.viewSourceExternally. --HG-- extra : rebase_source : 46750802d4fb7477fef5b96b0779842f946c37b2 --- 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 2da48d8e..96040aa4 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -1018,7 +1018,7 @@ var Buffer = Module("buffer", { return true; }; - let url = isString(doc) ? util.newURI(doc) : util.newURI(doc.location.href); + let uri = isString(doc) ? util.newURI(doc) : util.newURI(doc.location.href); if (!isString(doc)) return io.withTempFiles(function (temp) {