We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 865c42e commit 942d840Copy full SHA for 942d840
1 file changed
extractor/src/main/java/org/schabi/newpipe/extractor/utils/DonationLinkHelper.java
@@ -11,7 +11,7 @@ public enum DonationService {
11
}
12
13
public enum AffiliateService {
14
- NO_AFILIATE,
+ NO_AFFILIATE,
15
AMAZON,
16
17
@@ -33,7 +33,7 @@ public static AffiliateService getAffiliateServiceByLink(String link) throws Mal
33
URL url = new URL(fixLink(link));
34
switch (url.getHost()) {
35
case "amzn.to": return AffiliateService.AMAZON;
36
- default: return AffiliateService.NO_AFILIATE;
+ default: return AffiliateService.NO_AFFILIATE;
37
38
39
0 commit comments