chore: Update flutter_matrix_html

This commit is contained in:
Sorunome 2020-10-28 10:15:06 +01:00
commit db52d98c39
4 changed files with 28 additions and 6 deletions

View file

@ -62,7 +62,7 @@ class Store {
if (!PlatformInfos.isMobile) {
await _setupLocalStorage();
try {
return await storage.getItem(key).toString();
return await storage.getItem(key)?.toString();
} catch (_) {
return null;
}