View Single Post
  #2495  
Old 01.12.2022, 22:07
bugs.bunny bugs.bunny is offline
Super Loader
 
Join Date: May 2020
Posts: 25
Default

Quote:
Originally Posted by bugs.bunny View Post
auto-unskip (from mgpai's repository: **External links are only visible to Support Staff**..., as stated here at post 523: https://board.jdownloader.org/showpo...&postcount=523)
Maybe I have to deliver a little bit more information about my problem... ;-)

I was able to "capture" the issue today. JDownloader says "Übersprungen - Captcha-Eingabe erforderlich", please see attachment. And it won't resume like the script should do.

If I check "Advanced Settings" - "EventScripter: Scripts" I can see that the script is executed regularly. Right at the moment with "lastFire":1669922359027 (which is 01.12.2022 20:19:19.027 GMT+01:00), so a few minutes ago. But the skipped packages stays in its state.

Is there a way to find out what's going on? Is there a specific logfile?

Here is the code snippet copy/pasted directly from "Advanced Settings":
Code:
{
  "eventTrigger"         : "INTERVAL",
  "eventTriggerSettings" : {
                            "lastFire"      : 1669922359027,
                            "interval"      : 3600000,
                            "isSynchronous" : true
                           },
  "id"                   : 1662975091080,
  "name"                 : "auto-unskip",
  "script"               : "// Unskip links with unsolved captcha\n// Trigger: Interval\n// Set interval to 3600000 (60 minutes) or more\n// Enable 'Synchronous Execution' checkbox in top panel\n// Related Post: https: //board.jdownloader.org/showpost.php?p=432828&postcount=522\n\n(function() {\n    if (!isSynchronous()) return;\n    if (interval < 60 * 60 * 1000) return;\n    getAllDownloadLinks().forEach(function(link) {\n        if (link.getSkippedReason() == \"CAPTCHA\") {\n            link.setSkipped(false);\n            if (!isDownloadControllerRunning()) startDownloads();\n        }\n    });\n})();",
  "enabled"              : true
 }
Attached Images
File Type: png Screenshot 2022-12-01 205259.png (225.8 KB, 3 views)
Reply With Quote