summaryrefslogtreecommitdiff
path: root/runtime/examples
diff options
context:
space:
mode:
authorrandomicon00 <20146907+randomicon00@users.noreply.github.com>2022-05-14 11:00:02 +0100
committerGitHub <noreply@github.com>2022-05-14 12:00:02 +0200
commitf82a79ffdbc6b8f2fc4bbe6174ad33cb22e64386 (patch)
treeb8a6021de1157fe0cb70036a9eef79a4a2d0cac1 /runtime/examples
parent20ee3110d84c72f4a28cc5c9083b5dda47181602 (diff)
feat: add userAgent property to Navigator's prototype (#14415)
Diffstat (limited to 'runtime/examples')
-rw-r--r--runtime/examples/hello_runtime.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs
index a6b7fb06b..07e42f0ff 100644
--- a/runtime/examples/hello_runtime.rs
+++ b/runtime/examples/hello_runtime.rs
@@ -38,11 +38,11 @@ async fn main() -> Result<(), AnyError> {
runtime_version: "x".to_string(),
ts_version: "x".to_string(),
unstable: false,
+ user_agent: "hello_runtime".to_string(),
},
extensions: vec![],
unsafely_ignore_certificate_errors: None,
root_cert_store: None,
- user_agent: "hello_runtime".to_string(),
seed: None,
source_map_getter: None,
format_js_error_fn: None,