Add extra 'isCustom' to Intent from CreateSudokuActivity so that the GameActivity will know that it is handling a custom sudoku
This commit is contained in:
parent
2df51ac5ba
commit
54a4024dac
1 changed files with 1 additions and 0 deletions
|
@ -131,6 +131,7 @@ public class CreateSudokuActivity extends BaseActivity implements IFinalizeDialo
|
|||
Toast.makeText(CreateSudokuActivity.this, R.string.finished_verifying_custom_sudoku_toast, Toast.LENGTH_LONG).show();
|
||||
final Intent intent = new Intent(this, GameActivity.class);
|
||||
intent.setData(Uri.parse(GameActivity.URL_SCHEME_WITHOUT_HOST + "://" + boardContent));
|
||||
intent.putExtra("isCustom", true);
|
||||
startActivity(intent);
|
||||
finish();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue