Skip to content

Commit

Permalink
refactor: change for loop range for correct image indices
Browse files Browse the repository at this point in the history
  • Loading branch information
celalbaydar committed Jul 12, 2024
1 parent da3019f commit b7249d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ internal class LocalResourceManager(
synchronized(context) {
var pos = start
Log.e(TAG, "$className start $start till end $end")
for (i in start until end) {
for (i in start .. end) {
try {
val path = try {
Uri.withAppendedPath(
Expand Down

0 comments on commit b7249d6

Please sign in to comment.