Skip to content

Commit

Permalink
add hint after adding board as favorite
Browse files Browse the repository at this point in the history
  • Loading branch information
zfdang committed Jan 2, 2018
1 parent 03c2e21 commit e2dbfb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public void updateTitle() {
@Override public void onNext(@NonNull AjaxResponse ajaxResponse) {
Log.d(TAG, "onNext: " + ajaxResponse.toString());
if (ajaxResponse.getAjax_st() == AjaxResponse.AJAX_RESULT_OK) {
Toast.makeText(BoardTopicActivity.this, ajaxResponse.getAjax_msg(), Toast.LENGTH_SHORT).show();
Toast.makeText(BoardTopicActivity.this, ajaxResponse.getAjax_msg() + "\n请手动刷新收藏夹!", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(BoardTopicActivity.this, ajaxResponse.toString(), Toast.LENGTH_LONG).show();
}
Expand Down

0 comments on commit e2dbfb0

Please sign in to comment.