Fix compilation issue after rebase

This commit is contained in:
Benoit Marty 2019-06-28 10:44:02 +02:00
parent 519f49b50d
commit 2ef53e2066
1 changed files with 2 additions and 2 deletions

View File

@ -166,11 +166,11 @@ class HomeActivity : VectorBaseActivity(), ToolbarConfigurable {
override fun onOptionsItemSelected(item: MenuItem): Boolean {
when (item.itemId) {
R.id.menu_home_suggestion -> {
BugReporter.openBugReportScreen(this, true)
bugReporter.openBugReportScreen(this, true)
return true
}
R.id.menu_home_report_bug -> {
BugReporter.openBugReportScreen(this, false)
bugReporter.openBugReportScreen(this, false)
return true
}
}