We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d7beeec + 3d54bb2 commit 50aba36Copy full SHA for 50aba36
plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/internal/NewRefreshVersionsImpl.kt
@@ -124,7 +124,7 @@ internal suspend fun lookupVersionCandidates(
124
key = propertyName
125
)?.let { Version(it) } ?: emptyVersion
126
val lowestVersionInCatalog = versionsCatalogLibraries.mapNotNull {
127
- val matches = it.module.group == moduleId.group && it.module.name == it.module.name
+ val matches = it.module.group == moduleId.group && it.module.name == moduleId.name
128
when {
129
matches -> it.versionConstraint.tryExtractingSimpleVersion()?.let { rawVersion ->
130
Version(rawVersion)
0 commit comments