diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-03-28 15:16:16 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-03-28 15:16:16 +0200 |
commit | c475f1aa3ed49781ad2383b9c7f1b27cc2fff68e (patch) | |
tree | 547b897acaacfa2316b8b62ffeec5cd3e1317855 | |
parent | cc36a9b13b2c378cdddd221d4995a50af7914a35 (diff) | |
download | airwindows-lv2-port-c475f1aa3ed49781ad2383b9c7f1b27cc2fff68e.tar.gz airwindows-lv2-port-c475f1aa3ed49781ad2383b9c7f1b27cc2fff68e.tar.bz2 airwindows-lv2-port-c475f1aa3ed49781ad2383b9c7f1b27cc2fff68e.zip |
LV2/makeplugin: Map no type to EffectsPlugin
-rw-r--r-- | plugins/LV2/lib/makeplugin/plugin_info.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/LV2/lib/makeplugin/plugin_info.rb b/plugins/LV2/lib/makeplugin/plugin_info.rb index 69e7d78..8fc503e 100644 --- a/plugins/LV2/lib/makeplugin/plugin_info.rb +++ b/plugins/LV2/lib/makeplugin/plugin_info.rb @@ -42,7 +42,7 @@ module MakePlugin end def type - case @type.downcase + case @type&.downcase when 'bitcrusher' 'DistortionPlugin' when 'compressor' |