Open jessopb opened 2 years ago
Here is some background info https://github.com/lbryio/lbry-sdk/issues/2692
Can we have way to allow HUB operator to add custom message for example of reason why content got filtered? Making everything DMCA is not always a good way and would be cool as HUB operator to let people knew :)
That's what https://github.com/lbryio/lbry-sdk/pull/3620 does. And it's up to the channel to post it, not the hub operator. The operator may or may not be the one doing the blocking, but rather whitelisting blocking channels.
It will be your hub's responsibility to block what they wish. Blocking is implemented in the hubs this way: https://github.com/lbryio/hub/blob/master/docs/blocking.md#defaults In short, Content offensive to the hub operator is reposted to a relevant list.
Currently, we pull down a list of outpoints (txid : nout) on startup and block content found there. After this, we will no longer do that, leaving the blocking/filtering to hubs.
Attempting to resolve a blocked item results in this message:
Currently, going to the page in the app goes to It should instead display an error such as below, but including the text of the error:
For now, you don't need to remove the lbryio list_blocked, list_filtered calls or legacy blocking system. Just make the new one work.