mirror of
https://github.com/sparrowwallet/drongo.git
synced 2025-11-05 11:56:38 +00:00
fix specter diy capitalization
This commit is contained in:
parent
ad02b8a33c
commit
13e1fafbe8
1 changed files with 2 additions and 0 deletions
|
|
@ -172,6 +172,8 @@ public enum WalletModel {
|
||||||
word = "BitBox";
|
word = "BitBox";
|
||||||
} else if(word.equals(ONEKEY_PRO.getType())) {
|
} else if(word.equals(ONEKEY_PRO.getType())) {
|
||||||
word = "OneKey";
|
word = "OneKey";
|
||||||
|
} else if(word.equals("diy")) {
|
||||||
|
word = "DIY";
|
||||||
}
|
}
|
||||||
builder.append(Character.toUpperCase(word.charAt(0)));
|
builder.append(Character.toUpperCase(word.charAt(0)));
|
||||||
builder.append(word.substring(1));
|
builder.append(word.substring(1));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue