Wrong encryption method named in datasheet

My remote partner is configured to use AES-128 for encryption.
However, when I create a datasheet for that partner, the column "Your parameters" contains RC2-128 for encryption.
I think the error is the following line in DatasheetBuilder.java:

String defaultEncryptionRemote = this.remotePartner == null
? this.rbMessage.getResourceString("encryption." + AS2Message.ENCRYPTION_3DES)
: this.rbMessage.getResourceString("encryption." + this.remotePartner.getSignType());

I guess it was meant to be:

String defaultEncryptionRemote = this.remotePartner == null
? this.rbMessage.getResourceString("encryption." + AS2Message.ENCRYPTION_3DES)
: this.rbMessage.getResourceString("encryption." + this.remotePartner.getEncryptionType());

AS2 opensource build 55

Forum
AS2

Comments