Merge pull request #5403 from mglae/le10_addons_no_startupenable

Kodi: Remove "disable addon dialog at startup" for LibreELEC
This commit is contained in:
CvH 2021-05-26 19:50:55 +02:00 committed by GitHub
commit 1b8a86b462
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,27 @@
Date: Tue, 25 May 2021 19:32:28 +0200
Subject: [PATCH] Remove "disable addon dialog at startup" for LibreELEC.
The feature is not only not needed for LE but as well does enable the DVB
driver addons.
See https://github.com/LibreELEC/LibreELEC.tv/issues/5397 and
https://github.com/xbmc/xbmc/pull/19091
---
xbmc/platform/linux/PlatformLinux.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/xbmc/platform/linux/PlatformLinux.h b/xbmc/platform/linux/PlatformLinux.h
index c45d41143a..9a872a5f55 100644
--- a/xbmc/platform/linux/PlatformLinux.h
+++ b/xbmc/platform/linux/PlatformLinux.h
@@ -21,7 +21,6 @@ public:
~CPlatformLinux() override = default;
bool Init() override;
- bool IsConfigureAddonsAtStartupEnabled() override { return true; };
private:
std::unique_ptr<OPTIONALS::CLircContainer, OPTIONALS::delete_CLircContainer> m_lirc;
--
2.31.1