Page 1 of 1

{bitrate} is broken in FileBot 5.0.2

Posted: 11 Apr 2023, 05:06
by rednoah
FileBot 5.0.2 implicitly flattens bindings such as {bitrate} into plain String values, which makes the numeric value and scaled properties inaccessible. This is a bug for FileBot 5.* but also default behaviour for FileBot 4.* and prior.


OK:

Code: Select all

{ bitrate }

BROKEN:

Code: Select all

{ bitrate.mbps }

Code: Select all

{ bitrate.toInteger() }

Code: Select all

{ mbps > 2 }



EDIT:

FileBot r9724 fixes the issue.