Skip to content
This repository was archived by the owner on Jun 16, 2025. It is now read-only.

Commit 58916a1

Browse files
committed
Merge branch 'main' into features/keybinds
2 parents 49007be + c20bf36 commit 58916a1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 2.0
1+
next-version: 2.1
22
assembly-versioning-scheme: MajorMinorPatch
33
assembly-file-versioning-scheme: MajorMinorPatchTag
44
assembly-informational-format: '{Major}.{Minor}.{Patch}'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [![](./docs/assets/images/orb_exalted.png)](#) Sidekick 2 Beta
1+
# [![](./docs/assets/images/orb_exalted.png)](#) Sidekick 2
22
[![](https://img.shields.io/github/v/release/domialex/sidekick?style=flat-square)](https://github.com/domialex/Sidekick/releases) [![](https://img.shields.io/github/downloads/domialex/Sidekick/total?style=flat-square)](https://github.com/domialex/Sidekick/releases) [![](https://img.shields.io/github/downloads-pre/domialex/Sidekick/latest/total?style=flat-square)](https://github.com/domialex/Sidekick/releases) [![](https://img.shields.io/discord/664252463188279300?color=%23738AD6&label=Discord&style=flat-square)](https://discord.gg/H4bg4GQ)
33

44
A Path of Exile companion tool.

src/Sidekick.Application/Localization/SetUiLanguageHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ public async Task<Unit> Handle(SetUiLanguageCommand request, CancellationToken c
2828

2929
if (!string.IsNullOrEmpty(name))
3030
{
31-
Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo(request.Name);
32-
Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(request.Name);
31+
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.GetCultureInfo(request.Name);
32+
CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.GetCultureInfo(request.Name);
3333
}
3434

3535
return Unit.Value;

0 commit comments

Comments
 (0)