mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-25 02:48:54 +01:00
Tweak error message
This commit is contained in:
parent
8652c63091
commit
2502c85ff1
1 changed files with 1 additions and 1 deletions
|
@ -263,7 +263,7 @@ class _SharingBrowserState extends State<SharingBrowser> {
|
||||||
} else if (shares.first is ListSharingAlbum) {
|
} else if (shares.first is ListSharingAlbum) {
|
||||||
return _buildAlbumItem(context, shares);
|
return _buildAlbumItem(context, shares);
|
||||||
} else {
|
} else {
|
||||||
throw StateError("");
|
throw StateError("Unknown item type: ${shares.first.runtimeType}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue