Ignore lint warning.
This commit is contained in:
parent
8e5678af5b
commit
6d52763e19
2 changed files with 3 additions and 1 deletions
2
flow-typed/Lbry.js
vendored
2
flow-typed/Lbry.js
vendored
|
@ -77,7 +77,7 @@ declare type ResolveResponse = {
|
|||
// Keys are the url(s) passed to resolve
|
||||
[string]: {
|
||||
error?: {
|
||||
censor?: string,
|
||||
censor?: {},
|
||||
text?: string,
|
||||
},
|
||||
stream?: StreamClaim,
|
||||
|
|
|
@ -90,7 +90,9 @@ export function doResolveUris(
|
|||
resolveInfo[uri] = {
|
||||
...fallbackResolveInfo,
|
||||
errorCensor: {
|
||||
// $FlowFixMe
|
||||
...uriResolveInfo.error.censor,
|
||||
// $FlowFixMe
|
||||
text: uriResolveInfo.error.text,
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue