Thread: [Solved] Imgspice.com not working
View Single Post
  #10  
Old 30.04.2019, 17:16
jdmani jdmani is offline
JD Fan
 
Join Date: Oct 2010
Posts: 73
Default

Thanks @pspzockerscene, maybe is because i'm not using the full svn version then, i just download and compile the new ImgSpiceCom plugin but using the official release.

For reference I temporary resolved this overriding scanInfo on ImgSpiceCom class, but surely is not the right thing.
Spoiler:

@Override
public String[] scanInfo(final String[] fileInfo) {
if (inValidate(fileInfo[0])) {
fileInfo[0] = new Regex(correctedBR, "class="pic" alt="([^<>"]*?)"").getMatch(0);
}
return super.scanInfo(fileInfo);
}
Reply With Quote