Locationshare fix

This commit is contained in:
Tsubasahane
2025-12-29 15:42:55 +08:00
parent 9f5cc9e0d1
commit 18fa0a47b1
4 changed files with 26 additions and 15 deletions

View File

@@ -126,6 +126,13 @@ namespace LightlessSync.Services
throw;
}
}
public void UpdateSharingStatus(List<string> users, DateTimeOffset expireAt)
{
foreach (var user in users)
{
AddStatus(user, expireAt);
}
}
}
}