1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 08:13:20 +00:00

remove uri extra after captured

This commit is contained in:
Kyle Spearrin
2017-02-02 23:05:24 -05:00
parent f66b26a866
commit 8c6d395d89
3 changed files with 15 additions and 5 deletions

View File

@@ -29,6 +29,11 @@ namespace Bit.Android
protected override void OnCreate(Bundle bundle)
{
var uri = Intent.GetStringExtra("uri");
if(Intent.HasExtra("uri"))
{
Intent.RemoveExtra("uri");
}
if(uri != null && !Resolver.IsSet)
{
MainApplication.SetIoc(Application);