Skip to content

Commit 22f6ad7

Browse files
Fix wrong condition
1 parent 41e829f commit 22f6ad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/DoublePinAlphabet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public bool CanBeTranslated(string stringToTranslate)
5757
{
5858
if (content[i] >= 0x3400 && content[i] <= 0x9FD5)
5959
{
60-
string dp = _settings.ShouldUseDoublePin ? resultList[i] : ToDoublePin(resultList[i].ToLower());
60+
string dp = _settings.ShouldUseDoublePin ? ToDoublePin(resultList[i].ToLower()) : resultList[i];
6161
map.AddNewIndex(i, resultBuilder.Length, dp.Length + 1);
6262
resultBuilder.Append(' ');
6363
resultBuilder.Append(dp);

0 commit comments

Comments
 (0)