From d1a283a58809940b56b58adf4f1dbd97c8cda96f Mon Sep 17 00:00:00 2001
From: Justine Tunney <jtunney@gmail.com>
Date: Fri, 13 Oct 2023 11:39:00 -0700
Subject: [PATCH] Fix redbean LaunchBrowser()

---
 tool/net/redbean.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tool/net/redbean.c b/tool/net/redbean.c
index 908c8604f..37bd88be5 100644
--- a/tool/net/redbean.c
+++ b/tool/net/redbean.c
@@ -2870,7 +2870,7 @@ static char *GetBasicAuthorization(size_t *z) {
 
 static const char *GetSystemUrlLauncherCommand(void) {
   if (IsWindows()) {
-    return "explorer";
+    return "explorer.exe";
   } else if (IsXnu()) {
     return "open";
   } else {