From 3d482b47b04e4b1a249dda7554f6fe322e0a0758 Mon Sep 17 00:00:00 2001 From: jedel1043 Date: Fri, 23 Feb 2024 01:09:42 -0600 Subject: [PATCH] Add missingg `intl_bundled` cfg --- core/engine/src/context/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/engine/src/context/mod.rs b/core/engine/src/context/mod.rs index a5c1e6b85be..727349a4149 100644 --- a/core/engine/src/context/mod.rs +++ b/core/engine/src/context/mod.rs @@ -1052,7 +1052,7 @@ impl ContextBuilder { icu } else { cfg_if::cfg_if! { - if #[cfg(feature = "intl")] { + if #[cfg(feature = "intl_bundled")] { icu::IntlProvider::try_new_with_buffer_provider(boa_icu_provider::buffer()) .expect("Failed to initialize default icu data.") } else {