View Single Post
  #58  
Old 22.03.2017, 17:05
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

@infkeops,

Code:
// Set filename as comment
// Trigger: "Packagizer Hook"

if (link.getHost() == "ivoox.com") {
    link.setComment(link.getName());
}
Code:
// Set comment as file name
// Trigger: "A Download Stopped"

if (link.isFinished() && link.getHost() == "ivoox.com" && link.getName() != link.getComment()) {
    link.setName(link.getComment());
}
Reply With Quote