Advertisement
Nina611

Untitled

Feb 10th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. else if (t.contains("übersicht") || t.contains("overview") || t.contains("zusammenfassung") || t.contains("beschreibung")) {
  2. ergebnisFilm = Main.DBHandler.getMoviebyIDdeutsch(ergebnisFilm.getId());
  3. try{
  4. boolean overview = ergebnisFilm.getOverview()==null;
  5. if (overview == true){
  6. ergebnisFilm = Main.DBHandler.getMoviebyID(ergebnisFilm.getId());
  7. }
  8. else{
  9. deutscherFilm = true;
  10. }
  11. }
  12. catch (Exception e){
  13.  
  14. }
  15. String f = ergebnisFilm.getOverview();
  16. Chat.i = Chat.i - 1; //return increases it to 8, which is "show me more results"
  17. return "Die Beschreibung von "+ ergebnisFilm.getOriginalTitle() + " lautet: \n" +f;
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement