Merge branch 'fix-litecoin-donation-button' into 'master'

Fix litecoin button linking bitcoin address

Closes #2683

See merge request fdroid/fdroidclient!1297
This commit is contained in:
Hans-Christoph Steiner
2023-10-12 15:39:55 +00:00

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