update libraries

This commit is contained in:
MM20
2025-05-09 21:53:25 +02:00
parent 92c4bce528
commit 4dc5f2e269
10 changed files with 46 additions and 45 deletions
@@ -28,7 +28,7 @@ import org.json.JSONException
import org.koin.core.component.KoinComponent
import org.koin.core.component.get
import org.koin.core.error.InstanceCreationException
import org.koin.core.error.NoBeanDefFoundException
import org.koin.core.error.NoDefinitionFoundException
import org.koin.core.qualifier.named
import java.io.File
@@ -404,7 +404,7 @@ internal class SavableSearchableRepositoryImpl(
private suspend fun fromDatabaseEntity(entity: SavedSearchableEntity): SavedSearchable {
val deserializer: SearchableDeserializer? = try {
get(named(entity.type))
} catch (e: NoBeanDefFoundException) {
} catch (e: NoDefinitionFoundException) {
CrashReporter.logException(e)
null
} catch (e: InstanceCreationException) {
@@ -17,8 +17,8 @@ import okhttp3.HttpUrl
import okhttp3.OkHttpClient
import okhttp3.Request
import org.jsoup.Jsoup
import org.jsoup.UncheckedIOException
import java.io.IOException
import java.io.UncheckedIOException
import java.net.MalformedURLException
import java.net.URISyntaxException
import java.net.URL