CrowdSec Bouncer Plugin does not work

I see blocked IPs:



root@OpenWrt:~# nft list set crowdsec crowdsec-blacklists-crowdsec
table ip crowdsec {
set crowdsec-blacklists-crowdsec {
type ipv4_addr
flags timeout
elements = { 2.26.252.175 timeout 3h59m53s expires 2h49m19s450ms, 4.204.197.96 timeout 3h59m50s expires 3h14m53s730ms,
172.212.217.10 timeout 3h59m50s expires 17m15s70ms }
}
}

This command does not work anymore.

root@OpenWrt:~# nft list set crowdsec crowdsec-blacklists-crowdsec
Error: No such file or directory
list set crowdsec crowdsec-blacklists-crowdsec
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

But this works:

root@OpenWrt:~# nft list set crowdsec crowdsec-blacklists
table ip crowdsec {
        set crowdsec-blacklists {
                type ipv4_addr
                flags timeout
        }
}
root@OpenWrt:~# nft list set crowdsec crowdsec-blacklists
table ip crowdsec {
        set crowdsec-blacklists {
                type ipv4_addr
                flags timeout
        }
}

Works fine for me.