File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5151 runs-on : ubuntu-24.04
5252
5353 env :
54- LINUX_FEATURES : " --release --no-default-features --feature default-linux"
54+ LINUX_FEATURES : " --release --no-default-features --features default-linux"
5555
5656 steps :
5757 - name : Checkout
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ pub fn check(version_info: String) {
3030 "lms-auth" : true ,
3131 "no-ap-port" : true ,
3232 "oauth" : true ,
33- "ogg-direct" : true ,
3433 "podcasts" : true ,
3534 "save-token" : true ,
3635 "temp-dir" : true ,
@@ -39,6 +38,11 @@ pub fn check(version_info: String) {
3938 "zeroconf-port" : true
4039 } ) ;
4140
41+ #[ cfg( feature = "passthrough-decoder" ) ]
42+ if let Value :: Object ( map) = & mut capabilities {
43+ map. insert ( "ogg-direct" . to_string ( ) , json ! ( true ) ) ;
44+ }
45+
4246 println ! ( "{}" , capabilities) ;
4347 exit ( 0 ) ;
4448}
You can’t perform that action at this time.
0 commit comments