diff --git a/res/values/strings.xml b/res/values/strings.xml
index 2b25e487e82465811ec2681ad5ccbe653c0c0405..6bcba24dc511c4fced16c7082b9b5652a5dae1c4 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -75,7 +75,7 @@
Copy URL
Export update
Show changelog
- https://images.ecloud.global/%3$s/%1$s/e-%2$s.zip.changelog
+ https://gitlab.e.foundation/e/os/releases/-/releases/v%1$s-pie
Prioritize update process
New updates found
diff --git a/src/org/lineageos/updater/misc/Utils.java b/src/org/lineageos/updater/misc/Utils.java
index eb2230c22172bd5206301f8108c0cf67e4f943b9..25b850ba7c9c0436267edfde02394a71944561a2 100644
--- a/src/org/lineageos/updater/misc/Utils.java
+++ b/src/org/lineageos/updater/misc/Utils.java
@@ -172,14 +172,10 @@ public class Utils {
}
public static String getChangelogURL(Context context) {
- String device = SystemProperties.get(Constants.PROP_NEXT_DEVICE,
- SystemProperties.get(Constants.PROP_DEVICE));
-
- String version = SystemProperties.get(Constants.PROP_VERSION);
- String releaseType = SystemProperties.get(Constants.PROP_RELEASE_TYPE);
+ String buildVersion = SystemProperties.get(Constants.PROP_BUILD_VERSION);
- return context.getString(R.string.menu_changelog_url, device, version, releaseType);
+ return context.getString(R.string.menu_changelog_url, buildVersion);
}
public static void triggerUpdate(Context context, String downloadId) {