mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-08 18:28:53 +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
|
// content is proprietary and thus useless to us anyway
|
||||||
// UserComment is now also ignored as its size could be very large
|
// UserComment is now also ignored as its size could be very large
|
||||||
data.entries
|
data.entries
|
||||||
.where((e) => e.key != "MakerNote" && e.key != "UserComment")
|
.where((e) =>
|
||||||
|
e.key != "MakerNote" &&
|
||||||
|
e.key != "UserComment" &&
|
||||||
|
e.key != "ImageDescription")
|
||||||
.map((e) {
|
.map((e) {
|
||||||
dynamic jsonValue;
|
dynamic jsonValue;
|
||||||
if (e.value is Rational) {
|
if (e.value is Rational) {
|
||||||
|
|
Loading…
Reference in a new issue