Bug in TrackClipTypeAttribute

Hello,
I was trying to extend timeline with my own functionality, and I found this in the timeline codebase of TrackClipTypeAttribute.

        public TrackClipTypeAttribute(Type clipClass, bool allowAutoCreate)
        {
            inspectedType = clipClass;
            allowAutoCreate = false;
        }

The class member “allowAutoCreate” is not being assigned, it just sets the local parameter, which I’m sure is not the intention of this constructor. It also hard-sets it to false. This results in this.allowAutoCrate to always be false, no matter the parameter.

So [TrackClipType(typeof(SomePlayableAsset), true] will not set allowAutoCreate to true.