mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
Merge pull request #185 from glitch-soc/fix-null-status
workaround for null status
This commit is contained in:
commit
90770f6d59
|
@ -102,6 +102,16 @@ const makeMapStateToProps = () => {
|
||||||
const mapStateToProps = (state, ownProps) => {
|
const mapStateToProps = (state, ownProps) => {
|
||||||
|
|
||||||
let status = getStatus(state, ownProps.id);
|
let status = getStatus(state, ownProps.id);
|
||||||
|
|
||||||
|
if(status === null) {
|
||||||
|
console.error(`ERROR! NULL STATUS! ${ownProps.id}`);
|
||||||
|
// work-around: find first good status
|
||||||
|
for (let k of state.get('statuses').keys()) {
|
||||||
|
status = getStatus(state, k);
|
||||||
|
if (status !== null) break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let reblogStatus = status.get('reblog', null);
|
let reblogStatus = status.get('reblog', null);
|
||||||
let account = undefined;
|
let account = undefined;
|
||||||
let prepend = undefined;
|
let prepend = undefined;
|
||||||
|
|
Loading…
Reference in a new issue