Date: Thu, 19 Apr 2018 00:30:51 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467741 - in head/www/waterfox: . files Message-ID: <201804190030.w3J0Upxx007296@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Thu Apr 19 00:30:51 2018 New Revision: 467741 URL: https://svnweb.freebsd.org/changeset/ports/467741 Log: www/waterfox: apply some FF60 fix Added: head/www/waterfox/files/patch-bug1450565 (contents, props changed) Modified: head/www/waterfox/Makefile (contents, props changed) Modified: head/www/waterfox/Makefile ============================================================================== --- head/www/waterfox/Makefile Wed Apr 18 22:29:22 2018 (r467740) +++ head/www/waterfox/Makefile Thu Apr 19 00:30:51 2018 (r467741) @@ -2,7 +2,7 @@ PORTNAME= waterfox DISTVERSION= 56.1.0 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Added: head/www/waterfox/files/patch-bug1450565 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/waterfox/files/patch-bug1450565 Thu Apr 19 00:30:51 2018 (r467741) @@ -0,0 +1,27 @@ +commit 50367fb5e8ce +Author: Shane Caraveo <scaraveo@mozilla.com> +Date: Tue Apr 17 10:06:13 2018 -0500 + + Bug 1450565 use GET for initial authorization request, r=mossop a=jcristau + + MozReview-Commit-ID: 70PQSeoxvOF + + --HG-- + extra : source : e17c105c0be870ad5d07a1ff0b0a5da1646f35a7 +--- + toolkit/components/extensions/ext-identity.js | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git toolkit/components/extensions/ext-identity.js toolkit/components/extensions/ext-identity.js +index db4ea3e80a06..ab7811774fb6 100644 +--- toolkit/components/extensions/ext-identity.js ++++ toolkit/components/extensions/ext-identity.js +@@ -14,7 +14,7 @@ var { + const checkRedirected = (url, redirectURI) => { + return new Promise((resolve, reject) => { + let xhr = new XMLHttpRequest(); +- xhr.open("HEAD", url); ++ xhr.open("GET", url); + // We expect this if the user has not authenticated. + xhr.onload = () => { + reject(0);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804190030.w3J0Upxx007296>