diff --git a/src/KeyfileImportActivity.scala b/src/KeyfileImportActivity.scala index 7d45b8f..9ed0d38 100644 --- a/src/KeyfileImportActivity.scala +++ b/src/KeyfileImportActivity.scala @@ -85,6 +85,7 @@ class KeyfileImportActivity extends Activity { Toast.makeText(this, msg, Toast.LENGTH_SHORT).show() db.addPost(System.currentTimeMillis(), StorageDatabase.Post.TYPE_INFO, getString(R.string.post_info), msg) + startActivity(new Intent(this, classOf[LogActivity])) } } catch { case e : Exception => diff --git a/src/ProfileImportActivity.scala b/src/ProfileImportActivity.scala index b5b15fc..f228367 100644 --- a/src/ProfileImportActivity.scala +++ b/src/ProfileImportActivity.scala @@ -52,6 +52,7 @@ class ProfileImportActivity extends Activity { Toast.makeText(this, msg, Toast.LENGTH_SHORT).show() db.addPost(System.currentTimeMillis(), StorageDatabase.Post.TYPE_INFO, getString(R.string.profile_import_activity), msg) + startActivity(new Intent(this, classOf[LogActivity])) } catch { case e : Exception => val errmsg = getString(R.string.profile_import_error, e.getMessage())