svn commit: r467744 - in branches/2018Q2/www/waterfox: . files
Jan Beich
jbeich at FreeBSD.org
Thu Apr 19 00:32:39 UTC 2018
Author: jbeich
Date: Thu Apr 19 00:32:38 2018
New Revision: 467744
URL: https://svnweb.freebsd.org/changeset/ports/467744
Log:
MFH: r467741
www/waterfox: apply some FF60 fix
Approved by: ports-secteam blanket
Added:
branches/2018Q2/www/waterfox/files/patch-bug1450565
- copied unchanged from r467741, head/www/waterfox/files/patch-bug1450565
Modified:
branches/2018Q2/www/waterfox/Makefile
Directory Properties:
branches/2018Q2/ (props changed)
Modified: branches/2018Q2/www/waterfox/Makefile
==============================================================================
--- branches/2018Q2/www/waterfox/Makefile Thu Apr 19 00:31:29 2018 (r467743)
+++ branches/2018Q2/www/waterfox/Makefile Thu Apr 19 00:32:38 2018 (r467744)
@@ -2,7 +2,7 @@
PORTNAME= waterfox
DISTVERSION= 56.1.0
-PORTREVISION= 11
+PORTREVISION= 12
CATEGORIES= www ipv6
MAINTAINER= jbeich at FreeBSD.org
Copied: branches/2018Q2/www/waterfox/files/patch-bug1450565 (from r467741, head/www/waterfox/files/patch-bug1450565)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2018Q2/www/waterfox/files/patch-bug1450565 Thu Apr 19 00:32:38 2018 (r467744, copy of r467741, head/www/waterfox/files/patch-bug1450565)
@@ -0,0 +1,27 @@
+commit 50367fb5e8ce
+Author: Shane Caraveo <scaraveo at 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);
More information about the svn-ports-all
mailing list