Merge branch 'bugfix/90-error-playing-user-radio' into 'develop'

#90: Use correct radio identifier for user radio

Closes #90

See merge request funkwhale/funkwhale-android!90
housekeeping/mavenCentral
Ryan Harg 2021-09-08 07:51:49 +00:00
commit ee5be36f2c
3 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -56,7 +56,7 @@ class RadiosAdapter(
else -> listOf(
Radio(
0,
"actor_content",
"actor-content",
context.getString(R.string.radio_your_content_title),
context.getString(R.string.radio_your_content_description),
username

Wyświetl plik

@ -105,6 +105,7 @@ class RadioPlayer(val context: Context, val scope: CoroutineScope) {
prepareNextTrack(true)
} catch (e: Exception) {
e.logError()
withContext(Main) {
context.toast(context.getString(R.string.radio_playback_error))
}

Wyświetl plik

@ -0,0 +1 @@
Use correct radio identifier for user radio (#90)