misskey cannot show TL
This commit is contained in:
parent
89e0109cba
commit
0c59d3140e
|
@ -278,7 +278,7 @@ function misskeyParse(obj, mix, acct_id, tlid, popup, mutefilter) {
|
||||||
}
|
}
|
||||||
var if_notf = 'data-notfIndv="' + acct_id + "_" + toot.id + '"'
|
var if_notf = 'data-notfIndv="' + acct_id + "_" + toot.id + '"'
|
||||||
var toot = toot.note
|
var toot = toot.note
|
||||||
var dis_name = escapeHTML(toot.user.name)
|
var dis_name = escapeHTML(toot.user.name || toot.user.username)
|
||||||
} else {
|
} else {
|
||||||
var if_notf = ""
|
var if_notf = ""
|
||||||
if (toot.renote) {
|
if (toot.renote) {
|
||||||
|
@ -291,7 +291,7 @@ function misskeyParse(obj, mix, acct_id, tlid, popup, mutefilter) {
|
||||||
if (!toot.text) {
|
if (!toot.text) {
|
||||||
var toot = toot.renote
|
var toot = toot.renote
|
||||||
}
|
}
|
||||||
var dis_name = escapeHTML(toot.user.name)
|
var dis_name = escapeHTML(toot.user.name || toot.user.username)
|
||||||
var uniqueid = toot.id
|
var uniqueid = toot.id
|
||||||
var actemojick = false
|
var actemojick = false
|
||||||
} else {
|
} else {
|
||||||
|
@ -606,9 +606,8 @@ function misskeyParse(obj, mix, acct_id, tlid, popup, mutefilter) {
|
||||||
}
|
}
|
||||||
//Ticker
|
//Ticker
|
||||||
var tickerdom = ""
|
var tickerdom = ""
|
||||||
if (ticker) {
|
|
||||||
var tickerdata = JSON.parse(localStorage.getItem("ticker"))
|
var tickerdata = JSON.parse(localStorage.getItem("ticker"))
|
||||||
|
if (ticker && tickerdata) {
|
||||||
var thisdomain = toot.user.username.split("@")
|
var thisdomain = toot.user.username.split("@")
|
||||||
if (thisdomain.length > 1) {
|
if (thisdomain.length > 1) {
|
||||||
thisdomain = thisdomain[1]
|
thisdomain = thisdomain[1]
|
||||||
|
@ -798,7 +797,7 @@ function misskeyParse(obj, mix, acct_id, tlid, popup, mutefilter) {
|
||||||
'</span>' +
|
'</span>' +
|
||||||
'' + viewer + '' +
|
'' + viewer + '' +
|
||||||
'</div><div class="area-additional"><span class="additional">' + analyze +
|
'</div><div class="area-additional"><span class="additional">' + analyze +
|
||||||
'<div class="reactions ' + fullhide + '" style="height: 25px;"><span class="' + likehide + ' reaction re-like"><a onclick="reaction(\'like\',\'' + toot.id + '\',' + acct_id +
|
'<div class="reactions ' + fullhide + '" style="height: 25px; position: relative; top: -7px;"><span class="' + likehide + ' reaction re-like"><a onclick="reaction(\'like\',\'' + toot.id + '\',' + acct_id +
|
||||||
',\'' + tlid + '\')" class="waves-effect waves-dark btn-flat" style="padding:0;margin-left:3px;">' + twemoji.parse("👍") + '</a><span class="re-likect">' + like +
|
',\'' + tlid + '\')" class="waves-effect waves-dark btn-flat" style="padding:0;margin-left:3px;">' + twemoji.parse("👍") + '</a><span class="re-likect">' + like +
|
||||||
'</span></span><span class="' + lovehide + ' reaction re-love"><a onclick="reaction(\'love\',\'' + toot.id + '\',' + acct_id +
|
'</span></span><span class="' + lovehide + ' reaction re-love"><a onclick="reaction(\'love\',\'' + toot.id + '\',' + acct_id +
|
||||||
',\'' + tlid + '\')" class="waves-effect waves-dark btn-flat pointer" style="padding:0;margin-left:3px;">' + twemoji.parse("💓") + '</a><span class="re-lovect">' + love +
|
',\'' + tlid + '\')" class="waves-effect waves-dark btn-flat pointer" style="padding:0;margin-left:3px;">' + twemoji.parse("💓") + '</a><span class="re-lovect">' + love +
|
||||||
|
|
Loading…
Reference in New Issue
Block a user