From d1488df319a1d19154d294cb29627b9026deb564 Mon Sep 17 00:00:00 2001 From: Nico Mexis Date: Thu, 8 Sep 2022 18:18:21 +0200 Subject: Fix Collections display getting very unresponsive after some time (#261) * Update Gradle wrapper properly * Fix Collections display getting very unresponsive after some time --- .../github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java index bcec7526..b6e56743 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java @@ -1414,6 +1414,8 @@ public class ProfileViewer { collectionInfo.add("total_amounts", totalAmounts); collectionInfo.add("collection_tiers", collectionTiers); + collectionInfoMap.put(profileName, collectionInfo); + return collectionInfo; } -- cgit