Closed CapCalamity closed 7 years ago
When updating the ChatterList in the StartPage, we access the ChannelList property without checking for null - possibly resulting in a call of First() on an empty list. This would cause a crash.
ChatterList
StartPage
ChannelList
null
First()
Thanks a lot for this fix!
When updating the
ChatterList
in theStartPage
, we access theChannelList
property without checking fornull
- possibly resulting in a call ofFirst()
on an empty list. This would cause a crash.