From f81c90fdd0c5b4e69c6f5cc5897bf2f12dcdfcc4 Mon Sep 17 00:00:00 2001 From: mueller-ma <mueller-ma@users.noreply.github.com> Date: Sun, 30 Sep 2018 13:48:40 +0200 Subject: [PATCH] Change link to privacy policy (#1024) Fixes #1023 Signed-off-by: mueller-ma <mueller-ma@users.noreply.github.com> --- assets/store_descriptions/en-US/strings.xml | 2 +- mobile/src/main/java/org/openhab/habdroid/ui/AboutActivity.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/store_descriptions/en-US/strings.xml b/assets/store_descriptions/en-US/strings.xml index 4e00199b..36de5397 100644 --- a/assets/store_descriptions/en-US/strings.xml +++ b/assets/store_descriptions/en-US/strings.xml @@ -27,7 +27,7 @@ <short_description>Vendor and technology agnostic open source home automation</short_description> <fdroid>The builds on F-Droid have map view support, GCM and crash reporting removed and will not be able to receive push notifications from openHAB Cloud.</fdroid> <fdroid_beta><![CDATA[You can install the beta version alongside the <a href="https://f-droid.org/packages/org.openhab.habdroid/">stable version</a>.]]></fdroid_beta> - <fdroid_privacy_policy>Privacy policy: https://www.openhabfoundation.org/privacy</fdroid_privacy_policy> + <fdroid_privacy_policy>Privacy policy: https://www.openhabfoundation.org/privacy.html</fdroid_privacy_policy> <fdroid_anti_features>Anti Features</fdroid_anti_features> <fdroid_anti_features_text>The app is flagged with the "NonFreeAsset" flag, because the openHAB icon is not under a free license.</fdroid_anti_features_text> <beta>Try out new features and give early feedback!</beta> diff --git a/mobile/src/main/java/org/openhab/habdroid/ui/AboutActivity.java b/mobile/src/main/java/org/openhab/habdroid/ui/AboutActivity.java index 20749038..8f4df6c2 100644 --- a/mobile/src/main/java/org/openhab/habdroid/ui/AboutActivity.java +++ b/mobile/src/main/java/org/openhab/habdroid/ui/AboutActivity.java @@ -183,7 +183,7 @@ public class AboutActivity extends AppCompatActivity implements appCard.addItem(new MaterialAboutActionItem.Builder() .text(R.string.about_privacy_policy) .icon(R.drawable.ic_security_grey_24dp) - .setOnClickAction(MaterialAboutItemOnClickRedirect("https://www.openhabfoundation.org/privacy")) + .setOnClickAction(MaterialAboutItemOnClickRedirect("https://www.openhabfoundation.org/privacy.html")) .build()); MaterialAboutCard.Builder ohServerCard = new MaterialAboutCard.Builder(); -- GitLab