Skip to content

Commit

Permalink
fix static deps for package variants
Browse files Browse the repository at this point in the history
`json` variable references the RPackageContainer object, not RPackage object.
  • Loading branch information
muhomorr authored and thestinger committed Oct 17, 2023
1 parent 21fa509 commit 4ba82f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/app/grapheneos/apps/core/Repo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class RPackageContainer(val repo: Repo, val packageName: String,
}
}

if (!checkStaticDeps(json, repo)) {
if (!checkStaticDeps(jo, repo)) {
continue
}

Expand Down

0 comments on commit 4ba82f5

Please sign in to comment.