Skip to content

Commit 6619822

Browse files
committed
Fixed some English IPA is not tab separated
1 parent c50d300 commit 6619822

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Mirivoice/Mirivoice.Plugins.Builtin/IPAConverters/EnglishUSIPAConverter.cs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using Serilog;
1+
using R3;
2+
using Serilog;
23
using System;
34
using System.Collections.Generic;
45

@@ -69,8 +70,9 @@ public override string ConvertToIPA(string phoneme, bool isFirstPhoneme)
6970
IPA.Add(phone);
7071
}
7172
}
72-
string res = string.Join("\t", IPA);
73-
Log.Debug($"Converted {phoneme} to {res}");
73+
string result = string.Join("", IPA);
74+
string res = string.Join("\t", result.ToCharArray());
75+
//Log.Debug($"Converted {phoneme} to {res}");
7476
return res;
7577
}
7678
}

0 commit comments

Comments
 (0)