svn commit: r467741 - in head/www/waterfox: . files
Jan Beich
jbeich at FreeBSD.org
Thu Apr 19 00:30:51 UTC 2018
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 at 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 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