Skip to content

Commit

Permalink
Fix for KSAnnotation package null
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber committed Mar 25, 2024
1 parent 81b4993 commit 4bd7c59
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@ private fun KSAnnotation.hasName(packageName: String, simpleName: String): Boole
// we can skip resolving if the short name doesn't match
if (shortName.asString() != simpleName) return false
val declaration = annotationType.resolve().declaration
return declaration.packageName.asString() == packageName
return declaration.qualifiedName?.asString() == "$packageName.$simpleName"
}

/**
Expand Down

0 comments on commit 4bd7c59

Please sign in to comment.