fix method names

This commit is contained in:
Bruno Windels
2020-01-03 18:20:50 +01:00
parent 5919874f6f
commit 75fc25feb5
@@ -293,7 +293,7 @@ export class ToDeviceRequests {
}
setRequest(event, request) {
this.setBySenderAndTxnId(
this.setRequestBySenderAndTxnId(
event.getSender(),
ToDeviceChannel.getTransactionId(event),
request,
@@ -301,7 +301,7 @@ export class ToDeviceRequests {
}
setRequestByChannel(channel, request) {
this.setBySenderAndTxnId(channel.userId, channel.transactionId, request);
this.setRequestBySenderAndTxnId(channel.userId, channel.transactionId, request);
}
setRequestBySenderAndTxnId(sender, txnId, request) {