Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Nov 17, 2024
1 parent 46f18c5 commit 8bc647a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fun ImageRequest.Builder.transformations(transformations: List<Transformation>)
extras[transformationsKey] = transformations.toImmutableList()

var index = 0
val memoryCacheKey = transformations.joinToString { "${++index}:${it.cacheKey}" }
val memoryCacheKey = transformations.joinToString { "${index++}:${it.cacheKey}" }
memoryCacheKeyExtra("coil#transformations", memoryCacheKey)
}

Expand Down

0 comments on commit 8bc647a

Please sign in to comment.