Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2ac8c279 authored by Wu-cheng Li's avatar Wu-cheng Li Committed by Android Git Automerger
Browse files

am cb2b2378: Merge change 20729 into donut

Merge commit 'cb2b2378'

* commit 'cb2b2378':
  Fix the bug that EXIF attributes are always cached.
parents d47fddc5 cb2b2378
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -128,7 +128,10 @@ public class ExifInterface {
    }
    }


    public void setFilename(String filename) {
    public void setFilename(String filename) {
        if (mFilename == null || !mFilename.equals(filename)) {
            mFilename = filename;
            mFilename = filename;
            mCachedAttributes = null;
        }
    }
    }


    /**
    /**