Skip to content

Commit

Permalink
Merge #3204
Browse files Browse the repository at this point in the history
3204: Show image with `devel` alias regardless of its `supported` status r=townsend2010 a=andrei-toterman

fix #3202 

Co-authored-by: Andrei Toterman <[email protected]>
  • Loading branch information
bors[bot] and andrei-toterman authored Sep 15, 2023
2 parents e1db214 + 824b256 commit 335352b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simplestreams/simple_streams_manifest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ mp::SimpleStreamsManifest::fromJson(const QByteArray& json_from_official,

const auto release = product["release"].toString();
const auto release_title = product["release_title"].toString();
const auto supported = product["supported"].toBool();
const auto supported = product["supported"].toBool() || product_aliases.contains("devel");

const auto versions = product["versions"].toObject();
if (versions.isEmpty())
Expand Down

0 comments on commit 335352b

Please sign in to comment.