소스 검색

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"