View Single Post
  #1703  
Old 04.05.2021, 12:03
namyar namyar is offline
JD Beta
 
Join Date: Apr 2016
Posts: 51
Question

Hi,

I'm trying to replace spaces in filenames with an underscore within the LinkGrabber to enable mirror detection.

However, my current script doesn't work:
Code:
myCrawledLink.setName(myCrawledLink.name.replace(/\s/g, "_"))
It seems "myCrawledLink" has to be defined in some way, but I'm unsure how:confused:
Reply With Quote