fix missing result point callback

This commit is contained in:
Henry Schimke
2023-01-06 10:45:40 -06:00
parent 0185e80090
commit 7996f42c64
5 changed files with 21 additions and 20 deletions

View File

@@ -294,7 +294,7 @@ pub trait UPCEANReader: OneDReader {
if let Some(cid) = countryID {
decodeRXingResult.putMetadata(
RXingResultMetadataType::POSSIBLE_COUNTRY,
RXingResultMetadataValue::PossibleCountry(cid),
RXingResultMetadataValue::PossibleCountry(cid.to_owned()),
);
}
}