From 9591c060e1247afa084abd5f8cbd70023357b220 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 13 Oct 2007 01:32:12 +0200 Subject: [PATCH] Support EOS 350D EXIF ISO fields. --- perl/Sesse/pr0n/Common.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/perl/Sesse/pr0n/Common.pm b/perl/Sesse/pr0n/Common.pm index d863b21..d2002c1 100644 --- a/perl/Sesse/pr0n/Common.pm +++ b/perl/Sesse/pr0n/Common.pm @@ -561,6 +561,8 @@ sub make_infobox { push @classic_fields, [ $info->{'NikonD1-ISOSetting'}->[1] . " ISO", 0 ]; } elsif (defined($info->{'ISOSetting'})) { push @classic_fields, [ $info->{'ISOSetting'} . " ISO" ]; + } elsif (defined($info->{'ISO'})) { + push @classic_fields, [ $info->{'ISO'} . " ISO" ]; } if (defined($info->{'ExposureBiasValue'}) && $info->{'ExposureBiasValue'} ne "0") { -- 2.39.2