Skip to content

Commit

Permalink
Fix: set packageProperty to package name/null if a package selected/n…
Browse files Browse the repository at this point in the history
…ot selected as appropriate
  • Loading branch information
javierllorente committed Oct 18, 2024
1 parent 1a32b2d commit bc53625
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,17 +129,17 @@ public void setMetaConfig(OBSMetaConfig metaConfig) {
link.setText("");
}
projectProperty.set(pkgMetaConfig.getProject());
packageProperty.set(metaConfig.getName());
} else {
projectProperty.set(metaConfig.getName());
packageProperty.set(null);
}

String configDescription = metaConfig.getDescription();
if (configDescription.isBlank()) {
configDescription = App.getBundle().getString("overview.nodescription");
}
description.setText(configDescription);

packageProperty.set(metaConfig.getName());
}

public void setBuildLog(String buildLog) {
Expand Down

0 comments on commit bc53625

Please sign in to comment.