mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-23 19:00:41 +00:00
Korean uses ascii spaces, not ideographic spaces
This commit is contained in:
+1
-1
@@ -1155,7 +1155,7 @@
|
||||
function wordArrayToPhrase(words) {
|
||||
var phrase = words.join(" ");
|
||||
var language = getLanguageFromPhrase(phrase);
|
||||
if (language == "japanese" || language == "korean") {
|
||||
if (language == "japanese") {
|
||||
phrase = words.join("\u3000");
|
||||
}
|
||||
return phrase;
|
||||
|
||||
Reference in New Issue
Block a user