Skip to content
Snippets Groups Projects
Commit c62ed2cc authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Fix parse top artists data when empty or loading state.

parent 2cf6b433
No related branches found
No related tags found
1 merge request!40Resolve "Fix chart when empty or loading data"
Pipeline #4679 passed
This commit is part of merge request !40. Comments created here will be created in the context of that merge request.
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
app.versionName=0.0.39
app.versionCode=39
app.versionName=0.0.40
app.versionCode=40
Fix compute "top artists" data.
Correction sur calcul des données "top artistes".
......@@ -55,7 +55,7 @@ class TopArtistsData {
List<TopArtistsDataValue> topArtists = [];
Map<String, List<TopArtistsStreamDataValue>> topArtistsStream = {};
json?['top-artists'].forEach((element) {
json?['top-artists']?.forEach((element) {
TopArtistsDataValue value = TopArtistsDataValue(
artistName: element['artistName'] as String,
count: element['count'] as int,
......@@ -64,7 +64,7 @@ class TopArtistsData {
topArtists.add(value);
});
json?['top-artists-stream-by-date'].keys.forEach((date) {
json?['top-artists-stream-by-date']?.keys?.forEach((date) {
if (json['top-artists-stream-by-date'][date] is Map<String, dynamic>) {
Map<String, dynamic> content = json['top-artists-stream-by-date'][date];
......
......@@ -3,7 +3,7 @@ description: Display scrobbles data and charts
publish_to: 'none'
version: 0.0.39+39
version: 0.0.40+40
environment:
sdk: '^3.0.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment