Fix litecoin button linking bitcoin address

Closes #2683
This commit is contained in:
Tobias_Groza
2023-10-11 18:26:01 +02:00
parent d2c1fc3df2
commit 56a6e8aec7

View File

@@ -605,7 +605,7 @@ public class App implements Comparable<App>, Parcelable {
@Nullable
public String getLitecoinUri() {
return TextUtils.isEmpty(bitcoin) ? null : "litecoin:" + bitcoin;
return TextUtils.isEmpty(litecoin) ? null : "litecoin:" + litecoin;
}
@Nullable