fix: Correct typo that prevented state compressor service being loaded

This commit is contained in:
nex
2026-05-08 03:10:28 +00:00
committed by Ellis Git
parent 4fef0a7ff2
commit ebf9a08cd1
+1 -1
View File
@@ -81,7 +81,7 @@ fn build(args: crate::Args<'_>) -> Result<Arc<Self>> {
state: args.depend::<state::Service>("rooms::state"),
state_accessor: args.depend::<state_accessor::Service>("rooms::state_accessor"),
state_cache: args.depend::<state_cache::Service>("rooms::state_cache"),
state_compressor: args.depend::<state_compressor::Service>("state_compressor"),
state_compressor: args.depend::<state_compressor::Service>("rooms::state_compressor"),
timeline: args.depend::<timeline::Service>("rooms::timeline"),
users: args.depend::<users::Service>("users"),
},