fix: creating new album from search section stuck on loading state

This commit is contained in:
ashilkn 2024-01-19 13:09:21 +05:30
parent cb0b12db86
commit 2a7d6428a0

View file

@ -1,3 +1,5 @@
import "dart:async";
import "package:flutter/material.dart";
import "package:logging/logging.dart";
import "package:photos/core/event_bus.dart";
@ -211,9 +213,11 @@ extension SectionTypeExtensions on SectionType {
try {
final Collection c =
await CollectionsService.instance.createAlbum(text);
await routeToPage(
context,
CollectionPage(CollectionWithThumbnail(c, null)),
unawaited(
routeToPage(
context,
CollectionPage(CollectionWithThumbnail(c, null)),
),
);
} catch (e, s) {
Logger("CreateNewAlbumIcon")