浏览代码

rtmp-services: Enable service updates by default

Fix an oversight of 1f6cf34c2c4ab7dc4dc4d0ad2be1cec07d8b9e83

Which turns off by default service updates on any *nix
tytan652 2 年之前
父节点
当前提交
15e0064179
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      plugins/rtmp-services/CMakeLists.txt
  2. 1 1
      plugins/rtmp-services/cmake/legacy.cmake

+ 1 - 1
plugins/rtmp-services/CMakeLists.txt

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16...3.25)
 
 legacy_check()
 
-option(ENABLE_SERVICE_UPDATES "Checks for service updates" OFF)
+option(ENABLE_SERVICE_UPDATES "Checks for service updates" ON)
 
 set(RTMP_SERVICES_URL
     "https://obsproject.com/obs2_update/rtmp-services"

+ 1 - 1
plugins/rtmp-services/cmake/legacy.cmake

@@ -1,6 +1,6 @@
 project(rtmp-services)
 
-option(ENABLE_SERVICE_UPDATES "Checks for service updates" OFF)
+option(ENABLE_SERVICE_UPDATES "Checks for service updates" ON)
 
 set(RTMP_SERVICES_URL
     "https://obsproject.com/obs2_update/rtmp-services"