Fix wallpaper nullcheck
This commit is contained in:
parent
d0280e1ea9
commit
357d9aef92
1 changed files with 1 additions and 0 deletions
|
@ -368,6 +368,7 @@ class MatrixState extends State<Matrix> {
|
||||||
}
|
}
|
||||||
if (client.storeAPI != null) {
|
if (client.storeAPI != null) {
|
||||||
client.storeAPI.getItem("chat.fluffy.wallpaper").then((final path) async {
|
client.storeAPI.getItem("chat.fluffy.wallpaper").then((final path) async {
|
||||||
|
if (path == null) return;
|
||||||
final file = File(path);
|
final file = File(path);
|
||||||
if (await file.exists()) {
|
if (await file.exists()) {
|
||||||
wallpaper = file;
|
wallpaper = file;
|
||||||
|
|
Loading…
Add table
Reference in a new issue