aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt')
-rw-r--r--app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt b/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt
index 697ba6f..c560ffd 100644
--- a/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt
+++ b/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt
@@ -96,7 +96,7 @@ class TopMangaPage : Fragment() {
val mangaList: List<TopManga> = response.body()!!.getResults() //getting the "top" field containing our list of TopMangas
saveList(mangaList)
- showList(view, mangaList) // calling the method in charge of displaying on the recyclerview
+ showList(view, mangaList) //calling the method in charge of displaying on the recyclerview
} else {
showError() //a snackbar
@@ -120,7 +120,7 @@ class TopMangaPage : Fragment() {
}
private fun showError() {
- Snackbar.make(requireView(), "HA? YOU THOUGHT IT WAS AN API !? BUT IT WAS I, ERROR !", Snackbar.LENGTH_LONG)
+ Snackbar.make(requireView(), "API ERROR", Snackbar.LENGTH_LONG)
.setAction("Action", null).show()
}