View Single Post
  #7  
Old 20.10.2020, 15:13
dbrown1986 dbrown1986 is offline
Junior Loader
 
Join Date: Oct 2020
Posts: 11
Default

Well, already ran into an issue. The script removes finished links, but does nothing else. The web gui would not allow me to import, so I used the Android app to do so. That resulted in the following:

Code:
[ {
  "eventTrigger" : "ON_DOWNLOAD_CONTROLLER_STOPPED",
  "enabled" : true,
  "name" : "Move Completed Downloads",
  "script" : "if (link.finished) {var destinationFolder = \"/home/seedit4me/drive/debrid/\"; getPath(link.downloadPath).moveTo(destinationFolder); link.remove(); }",
  "eventTriggerSettings" : {
    "isSynchronous" : false
  },
  "id" : 1603194963402
} ]
It would appear the path variable is being truncated by the script engine when it saves it to the JSON settings file. I went to edit the JSON and when I tried to remove those extra slashes; they seemingly commented out the rest of the script.
Reply With Quote