Fix code so channel create without about shd not crash

This commit is contained in:
Vishal 2023-01-04 10:54:14 +05:30 committed by GitHub
parent 6dd8a2ab9b
commit c50607119e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -812,7 +812,7 @@ class Store {
}
if( json.containsKey('about')) {
roomAbout = json['about'];
roomAbout = json['about']??"";
}
List<String> emptyMessageList = [];