From c3caa7e25cf17fd52c4765bf051ec37c8fd92082 Mon Sep 17 00:00:00 2001 From: Tsubasahane Date: Mon, 29 Dec 2025 15:35:00 +0800 Subject: [PATCH] ToggleLocationSharing return bool --- LightlessSyncAPI/SignalR/ILightlessHub.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LightlessSyncAPI/SignalR/ILightlessHub.cs b/LightlessSyncAPI/SignalR/ILightlessHub.cs index 45af3f6..08fc687 100644 --- a/LightlessSyncAPI/SignalR/ILightlessHub.cs +++ b/LightlessSyncAPI/SignalR/ILightlessHub.cs @@ -119,6 +119,6 @@ public interface ILightlessHub Task UpdateLocation(LocationDto locationDto, bool offline); Task<(List, List)> RequestAllLocationInfo(); - Task ToggleLocationSharing(LocationSharingToggleDto dto); + Task ToggleLocationSharing(LocationSharingToggleDto dto); }