Skip to content

Commit

Permalink
Fix identity fetching again when open composer
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 committed Apr 23, 2024
1 parent 57c6b56 commit 370a859
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1402,7 +1402,7 @@ class MailboxDashBoardController extends ReloadableController {
}

void goToComposer(ComposerArguments arguments) async {
final argumentsWithIdentity = arguments.withIdentity(identities: _identities);
final argumentsWithIdentity = arguments.withIdentity(identities: List.from(_identities ?? []));

if (PlatformInfo.isWeb) {
if (composerOverlayState.value == ComposerOverlayState.inActive) {
Expand Down

0 comments on commit 370a859

Please sign in to comment.