Toggle enabled source in bulk

Maybe fixes #8439
This commit is contained in:
arkon
2022-11-04 09:39:23 -04:00
parent 65387d0089
commit 280b0f42db
2 changed files with 10 additions and 1 deletions

View File

@@ -118,7 +118,9 @@ class ExtensionDetailsPresenter(
}
fun toggleSources(enable: Boolean) {
extension?.sources?.forEach { toggleSource.await(it.id, enable) }
extension?.sources
?.map { it.id }
?.let { toggleSource.await(it, enable) }
}
private fun createUrl(url: String, pkgName: String, pkgFactory: String?, path: String = ""): String {