Quote:
Originally Posted by Fetter Biff
Is it possible to show only one message for all of the skipped downloads respectively to show the downloads in a single message or to have an option to not to show a skipped message at all?
|
Dupe check is performed on single link, so the message will be displayed for each duplicate link detected.
You can delete the following line or comment it (Add "//" at the beginning of that line) out to prevent the message from being displayed:
Current:
Code:
alert("Download Skipped: \"" + url + "\" is present in history file.");
Commented out:
Code:
// alert("Download Skipped: \"" + url + "\" is present in history file.");
You can do it in both link check and file check scripts.
Quote:
Originally Posted by Fetter Biff
And each time JD is restarted with the same links in the download list the same messages for the same downloads occur again. Can one somehow avoid that?
|
Once you comment out the message, JD will only skip it and not display any message. Skipping is required to prevent downloading the file again.
To avoid dupe checking everytime you start JD, remove the "#duplicatelink" or "#duplicatefile" from the comment (if you are plannig to redownload the file) or delete it from the list (if you don't intend to download it again).