Skip to content

Commit

Permalink
[bug] Fix tiff image upload; Fix bug 71550
Browse files Browse the repository at this point in the history
  • Loading branch information
konovalovsergey committed Nov 8, 2024
1 parent d965cb4 commit b67bd4f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions DocService/sources/utilsDocService.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
const util = require("util");
const config = require('config');
const exifParser = require('exif-parser');
//set global window to fix issue https://github.com/photopea/UTIF.js/issues/130
if (!global.window) {
global.window = global;
}
const Jimp = require('jimp');
const locale = require('windows-locale');
const ms = require('ms');
Expand Down

0 comments on commit b67bd4f

Please sign in to comment.