From 76938237abac51ef5de7af787fa2aeb8e8202ca0 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Thu, 8 Dec 2016 07:35:44 +0000 Subject: [PATCH] fix(issue-reports): Remove encoded solution This commit removes the encoded solution from the URI to make issue submission cleaner. --- client/commonFramework/report-issue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/commonFramework/report-issue.js b/client/commonFramework/report-issue.js index 9218df0594..828be3024c 100644 --- a/client/commonFramework/report-issue.js +++ b/client/commonFramework/report-issue.js @@ -5,7 +5,7 @@ window.common = (function({ common = { init: [] } }) { 'Challenge [', (common.challengeName || window.location.pathname), '](', - window.location.href, + window.location.origin + window.location.pathname, ') has an issue.\n', 'User Agent is: ', navigator.userAgent,