mirror of
https://github.com/gchq/CyberChef
synced 2025-12-05 23:53:27 +00:00
Change == to ===
This commit is contained in:
@@ -65,7 +65,7 @@ const Image = {
|
||||
return newImage;
|
||||
} catch (err) {
|
||||
// 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;
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user