Odd problem with DNSCrypt 1.9.5

For the past couple of weeks I've tried to make my usual build with image builder, but DNSCrypt never works, meaning once I have everything built and configured I can't load any websites (I tried a few different resolvers with the same result), I tested without DNSCrypt and the build works fine, the odd part is that when I just download a snapshot and install my usual packages DNSCrypt works fine. I haven't seen a difference between the logs and configs of my image builds and the regular snapshots, so I'm at a loss, here are the logs and configs I knew to look for from my latest image build where DNSCrypt isn't working, just wondering if anyone sees something strange -

OpenWrt SNAPSHOT r8134-a6add47 / LuCI Master (git-18.268.19970-136fba7)

DNSCrypt log

Tue Sep 25 21:10:10 2018 user.info : dnscrypt-proxy - [adguard-dns-ns1] does not support DNS Security Extensions

Tue Sep 25 21:10:10 2018 user.info : dnscrypt-proxy + Provider supposedly doesn't keep logs

Tue Sep 25 21:10:10 2018 daemon.notice dnscrypt-proxy[4976]: dnscrypt-proxy Starting dnscrypt-proxy 1.9.5

Tue Sep 25 21:10:10 2018 daemon.info dnscrypt-proxy[4976]: dnscrypt-proxy Generating a new session key pair

Tue Sep 25 21:10:10 2018 daemon.info dnscrypt-proxy[4976]: dnscrypt-proxy Done

Tue Sep 25 21:10:10 2018 user.info : dnscrypt-proxy - [adguard-dns-ns1] does not support DNS Security Extensions

Tue Sep 25 21:10:10 2018 user.info : dnscrypt-proxy + Provider supposedly doesn't keep logs

Tue Sep 25 21:10:10 2018 daemon.notice dnscrypt-proxy[5179]: dnscrypt-proxy Starting dnscrypt-proxy 1.9.5

Tue Sep 25 21:10:10 2018 daemon.info dnscrypt-proxy[5179]: dnscrypt-proxy Generating a new session key pair

Tue Sep 25 21:10:10 2018 daemon.info dnscrypt-proxy[5179]: dnscrypt-proxy Done

edit - I should point out there is one difference between the working and not working logs, but it's just the two lines showing that dnscrypt is actually running, for example here's the lines from the working log -

Tue Sep 25 23:23:41 2018 daemon.info dnscrypt-proxy[4888]: dnscrypt-proxy Server key fingerprint is 9357:B521:119C:5CA5:4404:ACE4:4488:6DD0:B70B:ACB9:3EAD:D567:1740:7E17:1210:5572
Tue Sep 25 23:23:41 2018 daemon.notice dnscrypt-proxy[4888]: dnscrypt-proxy Proxying from 127.0.0.1:5353 to 107.181.168.52:443

DNSCrypt config

config global

config dnscrypt-proxy 'ns1'
	option address '127.0.0.1'
	option port '5353'
	option resolver 'adguard-dns-ns1'

/etc/config/dhcp

config dnsmasq
	option domainneeded '1'
	option localise_queries '1'
	option rebind_protection '1'
	option rebind_localhost '1'
	option local '/lan/'
	option domain 'lan'
	option expandhosts '1'
	option authoritative '1'
	option readethers '1'
	option leasefile '/tmp/dhcp.leases'
	option nonwildcard '1'
	option localservice '1'
	list rebind_domain 'plex.direct'
	option serversfile '/tmp/adb_list.overall'
	option noresolv '1'
	option resolvfile '/etc/resolv-crypt.conf'
	option allservers '0'
	list server '127.0.0.1#5353'
	list server '/pool.ntp.org/8.8.8.8'

config dhcp 'lan'
	option interface 'lan'
	option start '100'
	option limit '150'
	option leasetime '12h'
	option dhcpv6 'server'
	option ra 'server'

config dhcp 'wan'
	option interface 'wan'
	option ignore '1'

config odhcpd 'odhcpd'
	option maindhcp '0'
	option leasefile '/tmp/hosts/odhcpd'
	option leasetrigger '/usr/sbin/odhcpd-update'
	option loglevel '4'

config dhcp 'Guest'
	option start '100'
	option leasetime '12h'
	option limit '150'
	option interface 'Guest'