1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00

Fix avatars for accounts not loading

This is due to a mistake on my part, a signal needs to be called.
This commit is contained in:
Joshua Goins 2024-11-09 14:56:40 -05:00
parent 41a91a0295
commit ec403a2fe7

View file

@ -24,6 +24,7 @@ void AccountManager::load()
const auto account = new Account(uuid, this); const auto account = new Account(uuid, this);
m_accounts.append(account); m_accounts.append(account);
Q_EMIT accountsChanged(); Q_EMIT accountsChanged();
Q_EMIT accountAdded(account);
} }
} }
} }