Fix: if account is null #102

This commit is contained in:
Cutls 2019-07-25 23:55:25 +09:00
parent b12c18aa08
commit 30aee556f1

View File

@ -915,6 +915,7 @@ function userparse(obj, auth, acct_id, tlid, popup) {
var datetype = localStorage.getItem("datetype");
Object.keys(obj).forEach(function (key) {
var toot = obj[key];
if (toot) {
console.log(["Parsing", toot])
if (!toot.username) {
var raw = toot;
@ -1028,6 +1029,8 @@ function userparse(obj, auth, acct_id, tlid, popup) {
'</div>' +
'</div>' +
'</div>';
}
});
return templete;