Ver a proveniência

fix(mailsync): delimit notification text from flags

Fixes text being interpreted as flags when it starts with a dash.
Try sending yourself a letter with subject starting with '-'.
E.g. if subject is '-10%' fixes error:
> Unknown option -10%
pull/1003/head
Yaroslav Chvanov há 3 meses
ascendente
cometimento
824feedc68
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: CCF75EB2BBF8F69C
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      bin/mailsync

+ 1
- 1
bin/mailsync Ver ficheiro

@@ -45,7 +45,7 @@ case "$(uname)" in

notify() { [ -n "$pgrepoutput" ] && for x in ${displays:-:0}; do
export DISPLAY="$x"
notify-send --app-name="mutt-wizard" "$1" "$2"
notify-send --app-name="mutt-wizard" -- "$1" "$2"
done ;}
;;
esac


Carregando…
Cancelar
Guardar