mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-22 12:23:06 +00:00
handle illegalArgExceptions when strings can't be split
This commit is contained in:
parent
e4c215b605
commit
9546d5ea58
1 changed files with 19 additions and 9 deletions
|
@ -119,7 +119,12 @@ class MediaRepository(
|
|||
suspend fun updateSingleEvent(guid: String): Event? = withContext(Dispatchers.IO) {
|
||||
val event = recordingApi.getEventByGUIDSuspending(guid)
|
||||
return@withContext if (event != null) {
|
||||
saveEvent(event)
|
||||
try {
|
||||
saveEvent(event)
|
||||
} catch (ex: IllegalArgumentException) {
|
||||
Log.e(TAG, "could not save event", ex)
|
||||
null
|
||||
}
|
||||
} else {
|
||||
null
|
||||
}
|
||||
|
@ -239,14 +244,19 @@ class MediaRepository(
|
|||
val searchEvents = recordingApi.searchEvents(queryString)
|
||||
if (searchEvents.events.isNotEmpty()) {
|
||||
val eventDto = searchEvents.events[0]
|
||||
val conference = updateConferencesAndGet(eventDto.conferenceUrl.split("/").last())
|
||||
if (updateConference && conference != null) {
|
||||
updateEventsForConference(conference)
|
||||
}
|
||||
if (conference?.id != null) {
|
||||
var event = Event(eventDto, conference.id)
|
||||
eventDao.updateOrInsert(event)
|
||||
return event
|
||||
try {
|
||||
val conference = updateConferencesAndGet(eventDto.conferenceUrl.split("/").last())
|
||||
if (updateConference && conference != null) {
|
||||
updateEventsForConference(conference)
|
||||
}
|
||||
if (conference?.id != null) {
|
||||
var event = Event(eventDto, conference.id)
|
||||
eventDao.updateOrInsert(event)
|
||||
return event
|
||||
}
|
||||
} catch (ex: IllegalArgumentException) {
|
||||
Log.e(TAG, "could not load conference", ex)
|
||||
return null
|
||||
}
|
||||
}
|
||||
return null
|
||||
|
|
Loading…
Reference in a new issue