You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The configuration variables SOUND_SPOTIFY_DISABLE_NORMALISATION and SOUND_SPOTIFY_ENABLE_CACHE only work if their value is defined. It is not clear in the support docs that any value has to be declared.
Additional context
In /plugins/spotify/start.sh these variable values are checked for null or not null using -z. If the variable is set but no value declared it functions as if there is no variable at all.
if [[ -z "$SOUND_SPOTIFY_DISABLE_NORMALISATION" ]]; then
set -- "$@" \
--enable-volume-normalisation
fi
Suggestions
Update the support docs to reflect that a value has to be set to something OR check to see if that variable exist, even if it's set to null
The text was updated successfully, but these errors were encountered:
The configuration variables SOUND_SPOTIFY_DISABLE_NORMALISATION and SOUND_SPOTIFY_ENABLE_CACHE only work if their value is defined. It is not clear in the support docs that any value has to be declared.
Additional context
In /plugins/spotify/start.sh these variable values are checked for null or not null using -z. If the variable is set but no value declared it functions as if there is no variable at all.
Suggestions
Update the support docs to reflect that a value has to be set to something OR check to see if that variable exist, even if it's set to null
The text was updated successfully, but these errors were encountered: