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 8, 2024
1 parent 192b5c8 commit ba8f1eb
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 ba8f1eb

Please sign in to comment.