Remove blocked and filtered reducers/selectors/actions. #7682

Open
Ruk33 wants to merge 9 commits from 7681-remove-block-list-apis into master
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 6d52763e19 - Show all commits

2
flow-typed/Lbry.js vendored
View file

@ -77,7 +77,7 @@ declare type ResolveResponse = {
// Keys are the url(s) passed to resolve
[string]: {
error?: {
censor?: string,
censor?: {},
text?: string,
},
stream?: StreamClaim,

View file

@ -90,7 +90,9 @@ export function doResolveUris(
resolveInfo[uri] = {
...fallbackResolveInfo,
errorCensor: {
// $FlowFixMe
...uriResolveInfo.error.censor,
// $FlowFixMe
text: uriResolveInfo.error.text,
},
};