1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-26 10:36:21 +02:00

fix dialog resolve message

This commit is contained in:
Kyle Spearrin 2019-05-10 13:22:25 -04:00
parent a535e8a82b
commit 9aef584494

View File

@ -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;