Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 3b913e4

Browse files
committed
Some minor bug fixes.
1 parent 6298b13 commit 3b913e4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/src/main/java/com/fox2code/mmm/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public void commonNext() {
244244
setActionBarBackground(null);
245245
updateScreenInsets(getResources().getConfiguration());
246246
});
247-
noodleDebug.push("Apply");
247+
noodleDebug.replace("Apply");
248248
RepoManager.getINSTANCE().runAfterUpdate(
249249
moduleViewListBuilder::appendRemoteModules);
250250
moduleViewListBuilder.applyTo(moduleList, moduleViewAdapter);

app/src/main/java/com/fox2code/mmm/module/ActionButtonType.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,8 @@ public static int donateIconForUrl(String url) {
266266
if (url == null) {
267267
return icon;
268268
} else if (url.startsWith("https://www.paypal.me/") ||
269-
url.startsWith("https://www.paypal.com/paypalme/")) {
269+
url.startsWith("https://www.paypal.com/paypalme/") ||
270+
url.startsWith("https://www.paypal.com/donate/")) {
270271
icon = R.drawable.ic_baseline_paypal_24;
271272
} else if (url.startsWith("https://patreon.com/") ||
272273
url.startsWith("https://www.patreon.com/")) {

0 commit comments

Comments
 (0)