The EXIF field ISOSpeedRatings is defined as SHORT integer. Some camera models use invalid string values like "100 0" or "125, 0".
TYPO3 and EXT:extractor should handle such invalid values with grace and normalize the input.
Before this patch, however, TYPO3 panics with MariaDB script mode error Data truncated for column 'iso_speed' at row 1.
Fixes https://github.com/xperseguers/t3ext-extractor/issues/48 and https://github.com/xperseguers/t3ext-extractor/issues/39
The EXIF field
ISOSpeedRatings
is defined asSHORT
integer. Some camera models use invalid string values like"100 0"
or"125, 0"
.TYPO3 and
EXT:extractor
should handle such invalid values with grace and normalize the input. Before this patch, however, TYPO3 panics with MariaDB script mode errorData truncated for column 'iso_speed' at row 1
.