Flint firmware 4.1.0 release 2 is out

Smooth upgrade using the GL.iNet upgrade page and the .tar file. I downloaded SQM scripts and sqm LuCi then ran a config backup to load my configurations.
Adguardhome is 0.107.8 (newest is 0.107.17 or 0.108.0).
Configurations file loaded wgclient and every thing is working except I am getting the same distfeed error as before.

Suggested this:

if ! grep "#!/bin/sh" /usr/bin/wget; then
 mv /usr/bin/wget /usr/bin/wget.bak
 echo -e "#!/bin/sh\n/usr/bin/wget.bak -4 \"\$@\"" > /usr/bin/wget && chmod +x /usr/bin/wget
fi

or

  1. mv /usr/bin/wget /usr/bin/wget.bak
  2. create a new /usr/bin/wget with contents:

#!/bin/sh /usr/bin/wget.bak -4 “$@”

  1. chmod +x /usr/bin/wget
    or