From b10d4fdd2dbd1c51a547f7c1ebabb2ca3fb3333c Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Sat, 3 Oct 2015 06:34:10 +0200 Subject: [PATCH] fix crash when clicking about in settings --- src/keepass2android/AboutActivity.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keepass2android/AboutActivity.cs b/src/keepass2android/AboutActivity.cs index 03ebc70a..573d6341 100644 --- a/src/keepass2android/AboutActivity.cs +++ b/src/keepass2android/AboutActivity.cs @@ -11,7 +11,7 @@ namespace keepass2android [Activity(Label = "@string/app_name", ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.KeyboardHidden, Theme = "@style/MyTheme_ActionBar")] - [IntentFilter(new[] { "keepass2android.AboutActivity" }, Categories = new[] { Intent.CategoryDefault })] + [IntentFilter(new[] { "kp2a.action.AboutActivity" }, Categories = new[] { Intent.CategoryDefault })] public class AboutActivity: Activity, IDialogInterfaceOnDismissListener { private AboutDialog _dialog;