Skip to content

Commit f0d6032

Browse files
committed
Fixed bad character in code details message
1 parent 012e951 commit f0d6032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qr/cloud/qrpedia/MessageViewerActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ public void onSuccess(int a, JSONObject result) {
617617
private void setCodeDetails(String description) {
618618
mProductDetails = description;
619619
if (!TextUtils.isEmpty(mProductDetails)) {
620-
mCodeContents.setText(mCodeContents.getText() + " " + mProductDetails);
620+
mCodeContents.setText(mCodeContents.getText() + " - " + mProductDetails);
621621
}
622622
}
623623

0 commit comments

Comments
 (0)