Browse Source
[fixup] Fixup nightly build
Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
fixup-android
Caio Oliveira
7 days ago
No known key found for this signature in database
GPG Key ID: AAAE6C7FD4186B0C
1 changed files with
1 additions and
1 deletions
-
src/android/app/src/main/jni/native.cpp
|
|
|
@ -1628,7 +1628,7 @@ JNIEXPORT jobjectArray JNICALL Java_org_yuzu_yuzu_1emu_NativeLibrary_checkForUpd |
|
|
|
const std::optional<UpdateChecker::Update> release = |
|
|
|
UpdateChecker::GetLatestRelease(is_prerelease); |
|
|
|
|
|
|
|
if (!release || release->tag == Common::g_build_version) { |
|
|
|
if (!release || release->tag.substr(release->tag.find('.') + 1, 10) == std::string(Common::g_build_version).substr(0, 10)) { |
|
|
|
return nullptr; |
|
|
|
} |
|
|
|
|
|
|
|
|