mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Ignore ImageDescription tag in exif
This commit is contained in:
parent
1cf5c3038c
commit
cfd2037903
1 changed files with 4 additions and 1 deletions
|
@ -35,7 +35,10 @@ class Exif with EquatableMixin {
|
|||
// content is proprietary and thus useless to us anyway
|
||||
// UserComment is now also ignored as its size could be very large
|
||||
data.entries
|
||||
.where((e) => e.key != "MakerNote" && e.key != "UserComment")
|
||||
.where((e) =>
|
||||
e.key != "MakerNote" &&
|
||||
e.key != "UserComment" &&
|
||||
e.key != "ImageDescription")
|
||||
.map((e) {
|
||||
dynamic jsonValue;
|
||||
if (e.value is Rational) {
|
||||
|
|
Loading…
Reference in a new issue