Fix wallpaper nullcheck

This commit is contained in:
Christian Pauly 2020-04-08 10:54:17 +02:00
parent 267b989786
commit e1fa736d46

View file

@ -368,6 +368,7 @@ class MatrixState extends State<Matrix> {
}
if (client.storeAPI != null) {
client.storeAPI.getItem("chat.fluffy.wallpaper").then((final path) async {
if (path == null) return;
final file = File(path);
if (await file.exists()) {
wallpaper = file;