fix upload.py args for new version
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
9
main.go
9
main.go
@@ -97,11 +97,10 @@ func playerJSON(p *mpris2.Player) string {
|
||||
text += v + right
|
||||
}
|
||||
out += "\",\"text\":\"" + text + "\","
|
||||
out += "\"tooltip\":\"" + fmt.Sprintf(
|
||||
"%s\\nby %s\\n",
|
||||
strings.ReplaceAll(p.Title, "&", "&"),
|
||||
strings.ReplaceAll(p.Artist, "&", "&"),
|
||||
)
|
||||
out += "\"tooltip\":\"" + strings.ReplaceAll(p.Title, "&", "&") + "\\n"
|
||||
if p.Artist != "" {
|
||||
out += "by " + strings.ReplaceAll(p.Artist, "&", "&") + "\\n"
|
||||
}
|
||||
if p.Album != "" {
|
||||
out += "from " + strings.ReplaceAll(p.Album, "&", "&") + "\\n"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user