Fix app name in about preference

This commit is contained in:
Arne 2024-06-18 12:39:15 +02:00
parent c0e7b91774
commit b58e17ade3

View file

@ -31,7 +31,7 @@ public class AboutPreference extends Preference {
}
private void setSummary() {
setSummary(String.format("%s%s %s (%s)", R.string.app_name, BuildConfig.VERSION_NAME, im.conversations.webrtc.BuildConfig.WEBRTC_VERSION, Strings.nullToEmpty(Build.DEVICE)));
setSummary(String.format("%s%s %s (%s)", getContext().getString(R.string.app_name), " " + BuildConfig.VERSION_NAME, im.conversations.webrtc.BuildConfig.WEBRTC_VERSION, Strings.nullToEmpty(Build.DEVICE)));
}
}