Add mt_ int_ prefixes in InfoTable

This commit is contained in:
simon987 2022-03-05 11:09:18 -05:00
parent 16a4fb4874
commit b82c26f0fb
3 changed files with 12 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -72,6 +72,12 @@ export default {
} }
}); });
Object.keys(src).forEach(key => {
if (key.startsWith("mt_") || key.startsWith("int_")) {
items.push({key: key, value: src[key]});
}
});
// Exif GPS // Exif GPS
if ("exif_gps_longitude_dec" in src) { if ("exif_gps_longitude_dec" in src) {
items.push({ items.push({

File diff suppressed because one or more lines are too long