Skip to content
This repository was archived by the owner on May 25, 2023. It is now read-only.

Commit 76d25d9

Browse files
committed
Fix linter suggestions
1 parent e690bce commit 76d25d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

js/jquery.fileupload-ui.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,10 @@
178178
type = 'image/jpeg';
179179
break;
180180
default:
181-
if (header.slice(5,14) === "667479706") {
182-
type = "image/heif";
181+
if (header.slice(5,14) === '667479706') {
182+
type = 'image/heic';
183183
} else {
184-
type = "unknown"; // Or you can use the blob.type as fallback
184+
type = 'unknown'; // Or you can use the blob.type as fallback
185185
}
186186
break;
187187
}

0 commit comments

Comments
 (0)