pulseaudio-equalizer-ladspa / equalizer

Pulseaudio LADSPA Equalizer
GNU General Public License v3.0
135 stars 15 forks source link

pulseaudio-equalizer: wrong reading local settings #39

Open tincturaginseng opened 4 years ago

tincturaginseng commented 4 years ago

Before

# Convert spaces into commas
   PA_LADSPA_CONTROLS="${RAWDATA1// /,}"

we need to remove the leading space, because it is converted to a comma and the settings become broken.

# Remove leading space in settings
   RAWDATA1="${RAWDATA1/ /}"

Similar for RAWDATA2 settings.patch.zip

Patch at pastebin.com