fix: revert to ChannelSet addSettings method without index

fixes throwing Non-fatal Exception: java.lang.IndexOutOfBoundsException: Index: N, Size: n
master
andrekir 2023-05-13 17:51:56 -03:00
rodzic 69c79c331f
commit 7eeb0b4d6f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -53,7 +53,7 @@ class ChannelSetRepository @Inject constructor(
preference.toBuilder().setSettings(channel.index, channel.settings).build()
}
} else {
preference.toBuilder().addSettings(channel.index, channel.settings).build()
preference.toBuilder().addSettings(channel.settings).build()
}
}
return getAdminChannel()