nsIMsgFolder.prettyName was removed in Thunderbird 141. let's deal with it.
quickFilters uses this property in 40 instances.
I believe that replacement with the expression
(f.prettyName || f.localizedName)
should be the a safe workaround that is backwards compatible. I need this to work both in 141+ and 115 unless I want to fork the code base (which I do not currently intend to do)
nsIMsgFolder.prettyNamewas removed in Thunderbird 141. let's deal with it.quickFilters uses this property in 40 instances.
I believe that replacement with the expression
(f.prettyName || f.localizedName)should be the a safe workaround that is backwards compatible. I need this to work both in 141+ and 115 unless I want to fork the code base (which I do not currently intend to do)