Skip to content

Commit

Permalink
force game lang fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorovvl committed Sep 19, 2024
1 parent 4611bd6 commit 126df94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/Main.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ private void butt_Click_1(object sender, RoutedEventArgs e)
_cookies = log.Cookies;
var tsoUrl = HttpUtility.ParseQueryString(log.Ver);
if (!string.IsNullOrEmpty(_settings.lang))
tsoUrl.Set("lang", _settings.lang);
tsoUrl.Set("lang", Servers._langs[_settings.lang]);
if (!string.IsNullOrEmpty(lang))
tsoUrl.Set("lang", lang);
if (!string.IsNullOrEmpty(_settings.window))
Expand Down

0 comments on commit 126df94

Please sign in to comment.