km4ack / patmenu2

Tools for working with Pat Menu
GNU General Public License v3.0
21 stars 9 forks source link

Success notice in autopat broken #58

Closed km4ack closed 2 years ago

km4ack commented 2 years ago

The success notice of autopat isn't displaying correctly. This is due to a change in the Pat url scheme. The new url scheme includes a "&" character. This causes a failure in YAD when it tries to display the message. Need to modify the URL to remove the "&" before displaying the connection success message. See this section of code.

km4ack commented 2 years ago

Changing the $CALL variable just before displaying the success message should work. CALL=$(echo "$CALL" | sed 's/&/ /')