mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
fix(mobile): empty album description does not save (#22649)
This commit is contained in:
parent
a80b9be07c
commit
55ad83d80d
1 changed files with 1 additions and 1 deletions
|
|
@ -300,7 +300,7 @@ class _EditAlbumDialogState extends ConsumerState<_EditAlbumDialog> {
|
||||||
|
|
||||||
await ref
|
await ref
|
||||||
.read(remoteAlbumProvider.notifier)
|
.read(remoteAlbumProvider.notifier)
|
||||||
.updateAlbum(widget.album.id, name: newTitle, description: newDescription.isEmpty ? null : newDescription);
|
.updateAlbum(widget.album.id, name: newTitle, description: newDescription);
|
||||||
|
|
||||||
if (mounted) {
|
if (mounted) {
|
||||||
Navigator.of(
|
Navigator.of(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue