1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 13:10:17 +00:00

Fix admin.exe to run again, some tokio weirdness

This commit is contained in:
Dmitry Yakimenko
2025-10-24 22:53:01 +02:00
parent 535c21a0e5
commit 4968cae17a

View File

@@ -462,7 +462,6 @@ mod windows_binary {
Ok(system_decrypted_base64)
}
#[tokio::main]
pub async fn main() {
if NEED_LOGGING {
WriteLogger::init(
@@ -506,5 +505,5 @@ mod windows_binary {
#[tokio::main]
async fn main() {
#[cfg(target_os = "windows")]
windows_binary::main();
windows_binary::main().await;
}