Skip to content

Commit da3f5f0

Browse files
authored
Merge pull request #3129 from asmgf/fix/autofill-doc-url
fix autofill doc url
2 parents 0ba4cec + 832d085 commit da3f5f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/keepass2android-app/GroupBaseActivity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ protected override void OnCreate(Bundle savedInstanceState)
721721

722722
if (FindViewById(Resource.Id.show_autofill_info) != null)
723723
{
724-
FindViewById(Resource.Id.show_autofill_info).Click += (sender, args) => Util.GotoUrl(this, "https://philippc.github.io/keepass2android/OreoAutoFill.html");
724+
FindViewById(Resource.Id.show_autofill_info).Click += (sender, args) => Util.GotoUrl(this, "https://github.com/PhilippC/keepass2android/wiki/AutoFill");
725725
Util.MoveBottomBarButtons(Resource.Id.show_autofill_info, Resource.Id.enable_autofill, Resource.Id.autofill_buttons, this);
726726
}
727727

src/keepass2android-app/settings/AppSettingsActivity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ private void UpdateAutofillPref()
895895
noAutofillDisablingPref.Enabled = true;
896896
autofillPref.Summary = Activity.GetString(Resource.String.plugin_enabled);
897897
autofillPref.Intent = new Intent(Intent.ActionView);
898-
autofillPref.Intent.SetData(Android.Net.Uri.Parse("https://philippc.github.io/keepass2android/OreoAutoFill.html"));
898+
autofillPref.Intent.SetData(Android.Net.Uri.Parse("https://github.com/PhilippC/keepass2android/wiki/AutoFill"));
899899
}
900900
else
901901
{

0 commit comments

Comments
 (0)