fix: temp hack for future content

This at least would work on the new/trending + all content page until the SDK Fixes it.
This commit is contained in:
Thomas Zarebczan 2020-01-28 12:10:33 -05:00 committed by Sean Yesmunt
parent 7b5e7b312e
commit dacdc59b93

View file

@ -130,6 +130,13 @@ function ClaimListDiscover(props: Props) {
.startOf('week')
.unix()
)}`;
} else {
// Hack for at least the New page until https://github.com/lbryio/lbry-sdk/issues/2591 is fixed
options.release_time = `<${Math.floor(
moment()
.startOf('minute')
.unix()
)}`;
}
}