Skip to content

Commit

Permalink
Correctly parse release URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-ancell committed Dec 14, 2021
1 parent 6a009d5 commit fe84e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/collection.dart
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ class AppstreamCollection {
urgency = _parseReleaseUrgency(urgencyName);
}
var description = release['description'];
var url = release['url'];
var url = release['url']?['details'];
var issues = <AppstreamIssue>[];
var issuesComponent = release['issues'];
if (issuesComponent != null) {
Expand Down

0 comments on commit fe84e67

Please sign in to comment.