Change URL for Lakka online updater - nightlies

currently, if users try to update a nightly build, they are offered
latest stable release, which in fact is a downgrade.
with correct URL the users will be pointed to the latest nightly build
in case they are running a nightly build - it does not affect users
running a stable/rc release of Lakka.

originally we wanted to patch RA locally
(https://github.com/libretro/Lakka-LibreELEC/pull/752), but it seems
patching upstream and just adding a make flag is more sane.
This commit is contained in:
Tomas Kelemen (vudiq) 2019-08-17 18:09:40 +02:00
parent cb9a9e9525
commit 2792783bbd

View File

@ -171,7 +171,11 @@ const char *file_path_str(enum file_path_enum enum_idx)
str = "http://thumbnailpacks.libretro.com";
break;
case FILE_PATH_LAKKA_URL:
#ifdef HAVE_LAKKA_NIGHTLY
str = "http://nightly.builds.lakka.tv/.updater";
#else
str = "http://le.builds.lakka.tv";
#endif
break;
case FILE_PATH_SHADERS_GLSL_ZIP:
str = "shaders_glsl.zip";