Change the text requirement for albums to appear
This commit is contained in:
parent
80fd73d317
commit
9367dbd72b
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ module.exports = {
|
||||||
function songStats() {
|
function songStats() {
|
||||||
var html = ``
|
var html = ``
|
||||||
|
|
||||||
if (activity.assets && activity.assets.large_text != activity.details && activity.state.length + activity.assets.large_text.length < 100) {
|
if (activity.assets && activity.assets.large_text != activity.details && activity.details.length + activity.state.length + activity.assets.large_text.length < 100) {
|
||||||
html += `
|
html += `
|
||||||
<br> Album: ${makeCompat(activity.assets.large_text || " ")}
|
<br> Album: ${makeCompat(activity.assets.large_text || " ")}
|
||||||
<br> Artist: ${makeCompat(activity.state || " ")}
|
<br> Artist: ${makeCompat(activity.state || " ")}
|
||||||
|
|
Loading…
Reference in a new issue