diff --git a/patches/components/url/lib.rs.patch b/patches/components/url/lib.rs.patch new file mode 100644 index 0000000..62c7c37 --- /dev/null +++ b/patches/components/url/lib.rs.patch @@ -0,0 +1,14 @@ +--- original ++++ modified +@@ -245,6 +245,11 @@ + return true; + } + ++ // Always trust beaver:// urls ++ if self.scheme() == "beaver" { ++ return true; ++ } ++ + // Step 3. Return the result of executing § 3.1 Is origin potentially trustworthy? on url’s origin. + self.origin().is_potentially_trustworthy() + }