Fix adding photos to album from photos page

This commit is contained in:
Ming Ming 2021-07-17 23:40:13 +08:00
parent 1957773c5a
commit c2d2bb694b

View file

@ -106,7 +106,8 @@ class _NewAlbumDialogState extends State<NewAlbumDialog> {
void _onOkPressed(BuildContext context) {
if (_formKey.currentState.validate()) {
_formKey.currentState.save();
if (_formValue.provider == _Provider.static) {
if (_formValue.provider == _Provider.static ||
_formValue.provider == null) {
_onConfirmStaticAlbum();
} else {
_onConfirmDirAlbum();