*Plugins: Fixes/Changes/Maintenance*

- ShortJamboInk: added new domain, fixed crawler RE ticket #LQPI2434-LCBM-5804FVXD

git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@49841 ebf7c1c2-ba36-0410-9fe8-c592906822b4

Former-commit-id: 375ea4c8e4c0b690bbce9cedf2afb29864b93bc4
This commit is contained in:
psp 2024-09-23 13:33:29 +00:00
parent c490750feb
commit e7714ed96c

View File

@ -30,7 +30,7 @@ public class ShortJamboInk extends MightyScriptAdLinkFly {
public static List<String[]> getPluginDomains() {
final List<String[]> ret = new ArrayList<String[]>();
// each entry in List<String[]> will result in one PluginForDecrypt, Plugin.getHost() will return String[0]->main domain
ret.add(new String[] { "short-jambo.ink", "university.jargonbuzz.online", "fawzy.xyz" });
ret.add(new String[] { "short-jambo.ink", "university.jargonbuzz.online", "fawzy.xyz", "crizyman.online" });
return ret;
}
@ -57,6 +57,6 @@ public class ShortJamboInk extends MightyScriptAdLinkFly {
@Override
protected String getSpecialReferer() {
return "https://fawzy.xyz/";
return "https://crizyman.online/";
}
}