Spotify Album/Song covers don't load

A few observations from your debug log.

You have multiple IP's assigned to the same interface on the Pi. This can cause problems if you did not set this up intentionally.

*** [ DIAGNOSING ]: Networking
[✓] IPv4 address(es) bound to the eth0 interface:
   10.0.0.123/24 does not match the IP found in /etc/pihole/setupVars.conf (https://discourse.pi-hole.net/t/use-ipv6-ula-addresses-for-pi-hole/2127)
   10.0.0.3/24 matches the IP found in /etc/pihole/setupVars.conf

You have multiple gateways assigned.

[i] Default IPv4 gateway: 10.0.0.2
10.0.0.2
10.0.3.2

Here is another indication that your blocklists contain some garbage:

*** [ DIAGNOSING ]: Name resolution (IPv4) using a random blocked domain and a known ad-serving domain
[✗] Failed to resolve r9---sn--gqn-vu2l.googlevideo.com via localhost (127.0.0.1)
[✗] Failed to resolve r9---sn--gqn-vu2l.googlevideo.com via Pi-hole (10.0.0.3)
[✓] doubleclick.com is 172.217.16.110 via a remote, public DNS server (8.8.8.8)
dig +short r9---sn--gqn-vu2l.googlevideo.com

dig: 'r9---sn--gqn-vu2l.googlevideo.com' is not a legal IDN name (string contains forbidden two hyphens pattern), use +noidnin

I don't know why I have 2 IP address assigned. I have set 10.0.0.3 as static. I don't know why the other one came in.
I have removed that 3 blocklists which contains invalid characters.

Run this command which will show you the non-commented lines in /etc/dhcpcd.conf

sudo grep -v '#\|^$' /etc/dhcpcd.conf

If there are duplicate entries for the same interface, fix that.

I think you are missing the point. The problem is not with those few blocklists that you aren't loading, the problem is with the blocklists that are not proper for Pi-hole that you are trying to force into your gravity list.

I don't have anything multiple IPs:

hostname
clientid
persistent
option rapid_commit
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
option interface_mtu
require dhcp_server_identifier
slaac private
interface eth0
static ip_address=10.0.0.3/24
static routers=10.0.0.2
static domain_name_servers=127.0.0.1

I got your point, removed most of the blocklists which seemed incorrect.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.