Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pkufool committed Jan 15, 2024
1 parent b063e3e commit 29a1b2c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ class MainActivity : AppCompatActivity() {
val status = model.reset(keywords)
if (!status) {
Log.i(TAG, "Failed to reset with keywords.")
val message = "Failed to setKeywords :\n ${keywords}, \n"
+ "The stream is not reset, \n"
+ "please change the keywords and try again."
val message = """Failed to setKeywords :\n ${keywords}, \n
The stream is not reset, \n
please change the keywords and try again."""
Toast.makeText(this, message, Toast.LENGTH_LONG).show();
}

Expand Down

0 comments on commit 29a1b2c

Please sign in to comment.