From 3cc5a3cd43be77b64e395d8a9178814330505ce2 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Tue, 16 Apr 2013 20:08:17 -0500 Subject: [PATCH] minor typo fix in hash_get() --- js/tt-rss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tt-rss.js b/js/tt-rss.js index fe12297d4..9a223733f 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -1076,7 +1076,7 @@ function hash_get(key) { kv = window.location.hash.substring(1).toQueryParams(); return kv[key]; } catch (e) { - exception_error("hash_set", e); + exception_error("hash_get", e); } } function hash_set(key, value) {