Please disable maximumSafeAAXParameterIdLength check in LV2 hosting

LV2 plugins have very long parameter IDs, like: des:https://socalabs.com/oscilloscope/:offset_l

When hosting LV2 plugins, this assert get his every time which is annoying

jassert (paramID.length() <= maximumSafeAAXParameterIdLength);

It probably shouldn’t even be checked in hosting plugins at all, nothing the host can do about parameter ids that are too long.

Just put than assertion in a

#if JucePlugin_Build_AAX

#endif

block