We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bea138a + 85ad62d commit a1ff935Copy full SHA for a1ff935
app/src/main/java/com/codeest/geeknews/ui/vtex/activity/RepliesActivity.java
@@ -133,10 +133,10 @@ public boolean onCreateOptionsMenu(Menu menu) {
133
}
134
break;
135
case R.id.action_copy:
136
- SystemUtil.copyToClipBoard(mContext, VtexApis.REPLIES_URL + id);
+ SystemUtil.copyToClipBoard(mContext, VtexApis.REPLIES_URL + topicId);
137
return true;
138
case R.id.action_share:
139
- ShareUtil.shareText(mContext, VtexApis.REPLIES_URL + id, "分享一篇文章");
+ ShareUtil.shareText(mContext, VtexApis.REPLIES_URL + topicId, "分享一篇文章");
140
141
return super.onOptionsItemSelected(item);
142
0 commit comments