Commit 8718de30 authored by fallenstardust's avatar fallenstardust

getdeck获取deckid和userid

parent 0d8c0f07
...@@ -202,6 +202,9 @@ public class MyOnlineDeckDetail implements Parcelable { ...@@ -202,6 +202,9 @@ public class MyOnlineDeckDetail implements Parcelable {
} }
public String getDeckYdk() { public String getDeckYdk() {
String deckYdk = this.deckYdk;
if(!deckYdk.contains("##"+ deckId)) this.deckYdk += ("\n##"+ deckId);
if(!deckYdk.contains("###"+ userId)) this.deckYdk += ("\n###"+ userId);
return deckYdk; return deckYdk;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment