fix(all): New templates.

This commit is contained in:
Rodrigo Rodriguez 2024-08-23 23:40:02 -03:00
parent ed9412f74c
commit 457541bdb9

View file

@ -95,14 +95,6 @@ export class ImageProcessingServices {
GBLogEx.info(min, `Image Processing SHARPEN ${file}.`);
const gbfile = DialogKeywords.getFileByHandle(file);
const data = await sharp(gbfile.data)
.blur()
.toBuffer();
const newFile = {
filename: gbfile.filename,
data: data
};
return;
}