Skip to content

Commit

Permalink
[android] Roles screen bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleVasya committed Feb 25, 2014
1 parent a420d16 commit 6cc2544
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ public void onViewCreated(View view, Bundle savedInstanceState) {
public void onResume() {
super.onResume();

if (!Utils.isServerAuthenticated(mActivity)) {
Toast.makeText(mActivity, "Please auth at server", Toast.LENGTH_LONG).show();
return;
}

mSaveBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Expand Down

0 comments on commit 6cc2544

Please sign in to comment.