From c2c31f51af7596294bbfab06797912659f93f7ee Mon Sep 17 00:00:00 2001 From: adeshkp Date: Wed, 24 Apr 2019 23:11:24 +0530 Subject: [PATCH] [minor] Fix a variable name in Basilisk error page Related commit: https://github.com/MoonchildProductions/UXP/commit/e313e5e2ec19355988c3d59745c202f4604670d3#diff-115f6bd87bbdaa1f6445547dac684c9c --- application/basilisk/base/content/aboutNetError.xhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/basilisk/base/content/aboutNetError.xhtml b/application/basilisk/base/content/aboutNetError.xhtml index 3296600c8a..5ff79ea128 100644 --- a/application/basilisk/base/content/aboutNetError.xhtml +++ b/application/basilisk/base/content/aboutNetError.xhtml @@ -362,7 +362,7 @@ // First, find the index of the tag we care about, being // careful not to use an over-greedy regex. var re = //; - var result = domainRe.exec(desc); + var result = re.exec(desc); if (!result) return;