diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -129,7 +129,8 @@ impl Status { let format = js_sys::Intl::DateTimeFormat::new(&empty_array, &options); let format = format.format(); let locale_string = format.call1(&JsValue::UNDEFINED, &date).unwrap(); - locale_string.as_string().unwrap() + let locale_string = locale_string.as_string().unwrap(); + format!("queue go brrr - ETA {}", &locale_string) } Status::ConnectionError => format!("queue go brrr - connection error?"), } |