Skip to content

Commit

Permalink
Fix busy status update
Browse files Browse the repository at this point in the history
  • Loading branch information
markwinter committed Apr 5, 2014
1 parent e6aa134 commit 44de3ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public void updateSettings(View view) {
UserDetails.status = ToxUserStatus.TOX_USERSTATUS_NONE;
if (statusSpinner.getSelectedItem().toString().equals(getString(R.string.status_away)))
UserDetails.status = ToxUserStatus.TOX_USERSTATUS_AWAY;
if (statusSpinner.getSelectedItem().toString().equals(R.string.status_busy))
if (statusSpinner.getSelectedItem().toString().equals(getString(R.string.status_busy)))
UserDetails.status = ToxUserStatus.TOX_USERSTATUS_BUSY;

editor.commit();
Expand Down

0 comments on commit 44de3ce

Please sign in to comment.