Skip to content

Commit bcd48c9

Browse files
committed
Fix Anti Theft Unlock signature
1 parent deb8142 commit bcd48c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ZWaveDotNet/CommandClasses/AntiTheftUnlock.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ public AntiTheftUnlock(Node node, byte endpoint) : base(node, endpoint, CommandC
4343
/// <param name="cancellationToken"></param>
4444
/// <returns></returns>
4545
/// <exception cref="MethodAccessException"></exception>
46-
public async Task<AntiTheftUnlockReport> Get(byte userIdentifier, CancellationToken cancellationToken = default)
46+
public async Task<AntiTheftUnlockReport> Get(CancellationToken cancellationToken = default)
4747
{
4848
if (node.ID == Node.BROADCAST_ID)
4949
throw new MethodAccessException("GET methods may not be called on broadcast nodes");
50-
ReportMessage response = await SendReceive(AntiTheftUnlockCommand.Get, AntiTheftUnlockCommand.Report, cancellationToken, userIdentifier);
50+
ReportMessage response = await SendReceive(AntiTheftUnlockCommand.Get, AntiTheftUnlockCommand.Report, cancellationToken);
5151
return new AntiTheftUnlockReport(response.Payload.Span);
5252
}
5353

0 commit comments

Comments
 (0)