fix a bug with the change chat dialog
authorDa Risk <darisk972@gmail.com>
Thu, 21 Jan 2010 00:22:43 +0100
changeset 642 e3d6355cf205
parent 641 047b5e2b9904
child 643 335e1eb21cec
fix a bug with the change chat dialog
src/com/beem/project/beem/ui/Chat.java
--- a/src/com/beem/project/beem/ui/Chat.java	Sat Jan 16 21:32:29 2010 +0100
+++ b/src/com/beem/project/beem/ui/Chat.java	Thu Jan 21 00:22:43 2010 +0100
@@ -299,7 +299,7 @@
 	    public void onClick(DialogInterface dialog, int item) {
 		Intent chatIntent = new Intent(getApplicationContext(), com.beem.project.beem.ui.Chat.class);
 		chatIntent.setData((openedChats.get(item)).toUri());
-		Chat.this.onNewIntent(chatIntent);
+		startActivity(chatIntent);
 	    }
 	});
 	AlertDialog chatSwitcherDialog = builder.create();