From ef538ee08de51e42e4f35b5ee60afa25dc3c34da Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Sat, 7 Dec 2024 17:24:50 +0100 Subject: [PATCH] fix(model): Keep the description when converting a project to a package This is a fixup for 61a9846. Signed-off-by: Sebastian Schuberth --- model/src/main/kotlin/Project.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/src/main/kotlin/Project.kt b/model/src/main/kotlin/Project.kt index 7db413d30896f..8f2b304fbc8d2 100644 --- a/model/src/main/kotlin/Project.kt +++ b/model/src/main/kotlin/Project.kt @@ -181,7 +181,7 @@ data class Project( id = id, authors = authors, declaredLicenses = declaredLicenses, - description = "", + description = description, homepageUrl = homepageUrl, binaryArtifact = RemoteArtifact.EMPTY, sourceArtifact = RemoteArtifact.EMPTY,