Do not log error in case of 404.

This commit is contained in:
Benoit Marty 2024-06-12 09:15:30 +02:00
parent f87047b899
commit dc7e56eb87

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
}
}