Do not log error in case of 404.

This commit is contained in:
Benoit Marty
2024-06-12 09:15:30 +02:00
parent 634118ecb8
commit e4759b03d2

View File

@@ -44,11 +44,11 @@ class DefaultElementCallBaseUrlProvider @Inject constructor(
try {
callWellknownAPI.getCallWellKnown().widgetUrl
} catch (e: HttpException) {
Timber.w(e, "Failed to fetch wellknown data")
// Ignore Http 404, but re-throws any other exceptions
if (e.code() != HttpURLConnection.HTTP_NOT_FOUND) {
throw e
}
Timber.w(e, "Failed to fetch wellknown data")
null
}
}