use .equals() for String

This commit is contained in:
Ammar Githam 2020-08-22 16:22:53 +09:00
parent 0fc2fe2faf
commit f6a224ec01
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public final class FlavorTown {
public static void updateCheck(@NonNull final Context context) {
Resources res = context.getResources();
new UpdateChecker(version -> {
if (version != BuildConfig.VERSION_NAME && !BuildConfig.DEBUG) {
if (!version.equals(BuildConfig.VERSION_NAME) && !BuildConfig.DEBUG) {
new AlertDialog.Builder(context)
.setTitle(res.getString(R.string.update_available, version))
.setMessage(R.string.update_notice)