Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/2.1.23'
Browse files Browse the repository at this point in the history
  • Loading branch information
catt-stefano committed May 31, 2017
2 parents 97b5851 + 9c90ff2 commit 5e27304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nearit/src/main/java/it/near/sdk/trackings/TrackCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private List<TrackRequest> readListFromCache() {
@SuppressLint("ApplySharedPref")
private void persistList() {
Set<String> set = new HashSet<>();
for (TrackRequest trackRequest : getRequests()) {
for (TrackRequest trackRequest : new ArrayList<>(getRequests())) {
set.add(trackRequest.getJsonObject().toString());
}

Expand Down

0 comments on commit 5e27304

Please sign in to comment.