Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
khjxiaogu committed Sep 10, 2020
1 parent a5f8562 commit 1e1d3a4
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@ public PlainMusicInfoProvider() {
public Message process(MusicInfo mi, Contact ct) throws OverFileSizeMaxException, MalformedURLException {
Image im=ct.uploadImage(new URL(mi.purl));
StringBuilder tsb=new StringBuilder()
.append("歌名:")
.append(mi.title)
.append("\n作者:")
.append(mi.desc)
.append("\n封面:"+mi.purl)
.append("\n外链:"+mi.murl)
.append("\n链接:"+mi.jurl)
.append("\n来自:"+mi.source);
.append("歌名:").append(mi.title)
.append("\n作者:").append(mi.desc)
.append("\n封面:").append(mi.purl)
.append("\n外链:").append(mi.murl)
.append("\n链接:").append(mi.jurl)
.append("\n来自:").append(mi.source);
return im.plus(tsb.toString());
}

Expand Down

0 comments on commit 1e1d3a4

Please sign in to comment.