mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
fix dialog resolve message
This commit is contained in:
parent
a535e8a82b
commit
9aef584494
1 changed files with 2 additions and 2 deletions
|
@ -35,9 +35,9 @@ namespace Bit.App.Services
|
|||
|
||||
public void Init()
|
||||
{
|
||||
_broadcasterService.Subscribe("showDialogResolve", (message) =>
|
||||
_broadcasterService.Subscribe(nameof(MobilePlatformUtilsService), (message) =>
|
||||
{
|
||||
if(message.Command == "")
|
||||
if(message.Command == "showDialogResolve")
|
||||
{
|
||||
var details = message.Data as Tuple<int, bool>;
|
||||
var dialogId = details.Item1;
|
||||
|
|
Loading…
Reference in a new issue