Fix b parsing

This commit is contained in:
Bolke de Bruin 2024-03-30 12:12:55 +01:00
parent a963ca0d00
commit bc36b2b0cb

View File

@ -44,6 +44,7 @@ func (p *RDP) Unmarshal(b []byte) (map[string]interface{}, error) {
}
mp[key] = intValue
case "s":
mp[key] = val
case "b":
mp[key] = val
default: