Skip to content

Commit

Permalink
fixed a dumb error.
Browse files Browse the repository at this point in the history
  • Loading branch information
JimSeker committed Sep 9, 2017
1 parent cabe845 commit a6a1962
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ protected void onCreate(Bundle savedInstanceState) {
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, mFragment).commit();
} else {
getSupportFragmentManager().beginTransaction()
.replace(R.id.container, mFragment).commit();
}

createchannel();
Expand Down

0 comments on commit a6a1962

Please sign in to comment.