Skip to content

Commit

Permalink
Fix GIF cache id bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Flyge committed Nov 14, 2016
1 parent 84a001a commit fd29dee
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,9 @@ public StringBuilder makeId(StringBuilder builder) {
if (inPreferQualityOverSpeed) {
builder.append("_").append("preferQuality");
}
if (decodeGifImage) {
builder.append("_").append("decodeGifImage");
}
if (bitmapConfig != null) {
builder.append("_").append(bitmapConfig.name());
}
Expand Down

0 comments on commit fd29dee

Please sign in to comment.