Skip to content

Commit e870710

Browse files
committed
Updating from source commit efc6704a5066b366f076480cfce2121ac195caa0 on 2025-08-16T16:47:35-07:00
1 parent e36c4b5 commit e870710

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/Codex.Web.Wasm/BrowserAppContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static async Task<WebProgramArguments> InitializeAsync(bool isSingleThrea
3333

3434
}
3535

36-
private static IInnerHttpClient GetClient(HttpClientKind kind)
36+
internal static IInnerHttpClient GetClient(HttpClientKind kind)
3737
{
3838
var client = new BrowserHttpClientWrapper();
3939
return client;

src/Codex.Web.Wasm/WasmProgram.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ public static async Task Main()
5555
}
5656
}
5757

58+
protected override IInnerHttpClient GetClient(HttpClientKind kind)
59+
{
60+
return BrowserAppContext.GetClient(kind);
61+
}
62+
5863
public static async Task RunTimer()
5964
{
6065
while (true)

0 commit comments

Comments
 (0)