Nicer catch all

This commit is contained in:
tzugen 2021-06-19 23:25:02 +02:00 committed by GitHub
parent 956d555b35
commit 38f1f5f5c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -462,8 +462,8 @@ class MediaPlayerController(
} else {
musicService.star(song.id, null, null)
}
} catch (e: java.lang.Exception) {
Timber.e(e)
} catch (all: Exception) {
Timber.e(all)
}
}.start()