mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Change == to ===
This commit is contained in:
parent
6741ba0783
commit
6cf64d794f
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ const Image = {
|
||||||
return newImage;
|
return newImage;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
// Simply return input if no EXIF data is found
|
// Simply return input if no EXIF data is found
|
||||||
if (err == "Exif not found.") return input;
|
if (err === "Exif not found.") return input;
|
||||||
throw "Could not remove EXIF data from image: " + err;
|
throw "Could not remove EXIF data from image: " + err;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue