rename doesn't work properly with record constructor initializer parameter

Given
record OfflinePCRecord(string name, DateTime? Firstseen, DateTime? Lastseen) { public OfflinePCRecord(string name) : this(name, null, null) { } }

If you use rename on the record primary constructor parameter name (which is also the member), the rename changes the first parameter to the this constructor initalizer as well, when that is actually the parameter to the constructor.