From 53cd633e8d55e05e540cd501db78fb6dfa54c53f Mon Sep 17 00:00:00 2001 From: bjoern Date: Mon, 16 Aug 2021 22:10:34 +0200 Subject: [PATCH] add migrated accounts to events emitter (#2607) successor of #2559 closes #2606 --- src/accounts.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/accounts.rs b/src/accounts.rs index 949ea7fa1..a93cd45c9 100644 --- a/src/accounts.rs +++ b/src/accounts.rs @@ -179,6 +179,7 @@ impl Accounts { account_config.id, ) .await?; + self.emitter.add_account(&ctx).await?; self.accounts.write().await.insert(account_config.id, ctx); Ok(account_config.id) }