This commit is contained in:
hiddify 2026-02-10 03:00:01 +03:30
parent f73df923d0
commit 53dd6ac96c
2 changed files with 1 additions and 3 deletions

View File

@ -281,7 +281,6 @@ class HiddifyCoreService with InfraLogger {
// yield* core.bgClient.outboundsInfo(Empty()).throttleTime(const Duration(seconds: 4), leading: false, trailing: true).map((event) => event.items.isEmpty ? null : event.items.first);
}
@riverpod
Stream<List<OutboundGroup>> watchActiveGroups() async* {
loggy.info("watching active groups");
@ -301,7 +300,6 @@ class HiddifyCoreService with InfraLogger {
//
// Stream<SingboxStatus> watchStatus() => _status;
@riverpod
ResponseStream<SystemInfo> watchStats() {
loggy.debug("watching stats");
try {

View File

@ -7,7 +7,7 @@ import 'package:riverpod_annotation/riverpod_annotation.dart';
part 'hiddify_core_service_provider.g.dart';
@Riverpod(keepAlive: true, dependencies: [AppDirectories, DebugModeNotifier, InAppNotificationController])
@Riverpod(keepAlive: true, dependencies: [AppDirectories, DebugModeNotifier, inAppNotificationController])
HiddifyCoreService hiddifyCoreService(Ref ref) {
return HiddifyCoreService(ref);
}