mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +03:00
Bugfix: 0 - Argument 2 must be of the type array, null given
This commit is contained in:
parent
2c363e63a0
commit
15ae0380ba
1 changed files with 1 additions and 1 deletions
|
|
@ -278,7 +278,7 @@ trait Accounts
|
||||||
$oAccount = $this->getMainAccountFromToken();
|
$oAccount = $this->getMainAccountFromToken();
|
||||||
if (1 < \count($aAccounts)) {
|
if (1 < \count($aAccounts)) {
|
||||||
$aAccounts = \array_filter(\array_merge(
|
$aAccounts = \array_filter(\array_merge(
|
||||||
\array_fill_keys($aOrder['Accounts'], null),
|
\array_fill_keys($aAccounts, null),
|
||||||
$this->GetAccounts($oAccount)
|
$this->GetAccounts($oAccount)
|
||||||
));
|
));
|
||||||
$this->SetAccounts($oAccount, $aAccounts);
|
$this->SetAccounts($oAccount, $aAccounts);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue