Bump dependencies

(cherry picked from commit 5de72b7d32676fe3d0e9ce2176fe48e29a9f859c)
This commit is contained in:
arkon
2023-09-23 12:15:28 -04:00
committed by Jobobby04
parent c3df5563cc
commit 35eb6c7ebe
3 changed files with 8 additions and 8 deletions
@@ -41,9 +41,9 @@ class OpenSourceLicensesScreen : Screen() {
),
onLibraryClick = {
val libraryLicenseScreen = OpenSourceLibraryLicenseScreen(
name = it.name,
website = it.website,
license = it.licenses.firstOrNull()?.htmlReadyLicenseContent.orEmpty(),
name = it.library.name,
website = it.library.website,
license = it.library.licenses.firstOrNull()?.htmlReadyLicenseContent.orEmpty(),
)
navigator.push(libraryLicenseScreen)
},