fix(core): fix index check for channel channelList availablitity.
This commit is contained in:
@@ -108,7 +108,7 @@ class StreamChannelListEventHandler {
|
|||||||
final channels = [...controller.currentItems];
|
final channels = [...controller.currentItems];
|
||||||
|
|
||||||
final channelIndex = channels.indexWhere((it) => it.cid == channelCid);
|
final channelIndex = channels.indexWhere((it) => it.cid == channelCid);
|
||||||
if (channelIndex <= 0) {
|
if (channelIndex < 0) {
|
||||||
// If the channel is not in the list, It might be hidden.
|
// If the channel is not in the list, It might be hidden.
|
||||||
// So, we just refresh the list.
|
// So, we just refresh the list.
|
||||||
await controller.refresh(resetValue: false);
|
await controller.refresh(resetValue: false);
|
||||||
|
|||||||
Reference in New Issue
Block a user