mirror of
https://github.com/mirror/jdownloader.git
synced 2024-11-23 03:59:51 +00:00
*Plugins: Fixes/Changes/Maintenance*
- rapidgator: do not jump into experimental wait handling in premium mode RE forum 96330 git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@49650 ebf7c1c2-ba36-0410-9fe8-c592906822b4 Former-commit-id: 90a3f08a52cf754e13d6f61034120a5579e5ed98
This commit is contained in:
parent
2e570276e7
commit
86711c77ca
@ -439,7 +439,7 @@ public class RapidGatorNet extends PluginForHost {
|
||||
}
|
||||
} else {
|
||||
/* Free + free account + free download of subscriber-only file in premium mode */
|
||||
if (cfg.isActivateExperimentalWaittimeHandling()) {
|
||||
if (cfg.isActivateExperimentalWaittimeHandling() && !isPremiumAccount) {
|
||||
currentIP = new BalancedWebIPCheck(br.getProxy()).getExternalIP().getIP();
|
||||
logger.info("currentIP = " + currentIP);
|
||||
synchronized (blockedIPsMap) {
|
||||
@ -468,7 +468,7 @@ public class RapidGatorNet extends PluginForHost {
|
||||
}
|
||||
if (isPremiumAccount && subscribersOnlyDownload != null) {
|
||||
/* Use owns premium account but can't download this file as premium user. */
|
||||
logger.info("Attempting free download in premium mode because only premium subscribers can download this file as premium");
|
||||
logger.info("Attempting free download in premium mode because only premium subscribers can download this file as premium | subscribersOnlyDownload= " + subscribersOnlyDownload);
|
||||
}
|
||||
logger.info("Pre download wait in seconds: " + waitSecondsStr);
|
||||
long waitMillis = Long.parseLong(waitSecondsStr) * 1000;
|
||||
|
Loading…
Reference in New Issue
Block a user