Skip to content

Commit

Permalink
Bug fixes, docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharkaboi committed May 29, 2021
1 parent d43fddf commit d6b91b8
Show file tree
Hide file tree
Showing 38 changed files with 45 additions and 117 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img src="https://img.shields.io/badge/License-MIT-orange" /></a>
<a href="https://github.com/sharkaboi/mediahub/graphs/contributors" alt="Contributors">
<img src="https://img.shields.io/github/contributors/sharkaboi/mediahub" /></a><br>
A simple MAL client. Uses the [MAL Api](https://myanimelist.net/apiconfig/references/api/v2)
A simple MAL client. Uses the <a href="https://myanimelist.net/apiconfig/references/api/v2">MAL Api</a>
</p>

## Uses
Expand Down Expand Up @@ -48,7 +48,7 @@ Anime search | Manga search
Discover | Profile
![](assets/screenshots/discover.png) | ![](assets/screenshots/profile.png)
Anime suggestions | Anime seasonals
![](assets/screenshots/anime_suggestions.png) | ![](assets/screenshots/anime_seasonals.png)
![](assets/screenshots/anime_suggestions.png) | ![](assets/screenshots/anime_seasonal.png)
Settings | Share
![](assets/screenshots/settings.png) | ![](assets/screenshots/share.png)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.sharkaboi.mediahub.common.data.api.enums

@Suppress("EnumEntryName")
enum class OAuthGrantType {
refresh_token,
authorization_code
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.sharkaboi.mediahub.common.data.api.models.useranime


import android.util.Log
import androidx.annotation.Keep
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package com.sharkaboi.mediahub.common.extensions

import android.text.Html
import android.text.Spanned
import com.sharkaboi.mediahub.R
import com.sharkaboi.mediahub.common.data.api.models.anime.AnimeByIDResponse
import com.sharkaboi.mediahub.common.data.api.models.manga.MangaByIDResponse
import java.text.DecimalFormat
Expand Down Expand Up @@ -101,7 +100,7 @@ internal fun AnimeByIDResponse.Broadcast.getBroadcastTime(): String {
if (this.startTime == null) {
return "On ${this.dayOfTheWeek}"
}
val dayOfWeek = DayOfWeek.valueOf(this.dayOfTheWeek.toUpperCase(Locale.ROOT))
val dayOfWeek = DayOfWeek.valueOf(this.dayOfTheWeek.uppercase(Locale.ROOT))
val fieldIso = WeekFields.of(Locale.FRANCE).dayOfWeek()
val now = OffsetDateTime.now().with(fieldIso, dayOfWeek.value.toLong())
val (hour, mins) = this.startTime.split(":").map { it.toInt() }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
package com.sharkaboi.mediahub.common.extensions

import android.content.Context
import android.graphics.Color
import android.text.Html
import android.text.Spanned
import android.view.View
import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity
import androidx.fragment.app.Fragment
import com.google.android.material.snackbar.Snackbar
import com.sharkaboi.mediahub.common.data.api.models.anime.AnimeByIDResponse
import java.text.DecimalFormat
import java.time.*
import java.time.format.DateTimeFormatter
import java.time.temporal.WeekFields
import java.util.*

internal fun AppCompatActivity.showToast(message: String?, length: Int = Toast.LENGTH_SHORT) =
Toast.makeText(this, message ?: String.emptyString, length).show()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ package com.sharkaboi.mediahub.common.views.image_slider
import android.app.Dialog
import android.graphics.Color
import android.graphics.drawable.ColorDrawable
import android.os.Build
import android.os.Bundle
import android.view.*
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.view.Window
import androidx.core.view.setPadding
import androidx.fragment.app.DialogFragment
import androidx.navigation.fragment.navArgs
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.sharkaboi.mediahub.modules.anime.adapters

import android.util.Log
import android.view.LayoutInflater
import android.view.ViewGroup
import androidx.paging.PagingDataAdapter
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.sharkaboi.mediahub.modules.anime_ranking.vm

import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import androidx.paging.PagingData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package com.sharkaboi.mediahub.modules.discover.repository
import android.util.Log
import com.haroldadmin.cnradapter.NetworkResponse
import com.sharkaboi.mediahub.common.data.api.ApiConstants
import com.sharkaboi.mediahub.common.data.api.enums.AnimeRankingType
import com.sharkaboi.mediahub.common.data.api.enums.getAnimeSeason
import com.sharkaboi.mediahub.common.data.api.models.anime.AnimeRankingResponse
import com.sharkaboi.mediahub.common.data.api.models.anime.AnimeSeasonalResponse
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.sharkaboi.mediahub.modules.manga_details.vm

import android.util.Log
import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
Expand Down
11 changes: 0 additions & 11 deletions app/src/main/res/anim/translate_down.xml

This file was deleted.

11 changes: 0 additions & 11 deletions app/src/main/res/anim/translate_up.xml

This file was deleted.

4 changes: 3 additions & 1 deletion app/src/main/res/drawable/ic_anime.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:width="24dp"
android:height="24dp"
android:tint="?colorOnSurface"
android:viewportWidth="48"
android:viewportHeight="48">
android:viewportHeight="48"
tools:ignore="VectorRaster">
<path
android:fillColor="#FF000000"
android:fillType="evenOdd"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/drawable/ic_discover.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
<path
android:fillColor="#000000"
android:fillType="evenOdd"
android:pathData="M0,12C0,18.6274 5.3726,24 12,24C18.6274,24 24,18.6274 24,12C24,5.3726 18.6274,0 12,0C5.3726,0 0,5.3726 0,12ZM1.1429,12C1.1429,6.004 6.004,1.1429 12,1.1429C17.996,1.1429 22.8571,6.004 22.8571,12C22.8571,17.996 17.996,22.8571 12,22.8571C6.004,22.8571 1.1429,17.996 1.1429,12ZM20.5714,12.5714H21.1429C21.4589,12.5714 21.7143,12.316 21.7143,12C21.7143,11.684 21.4589,11.4286 21.1429,11.4286H20.5714C20.2554,11.4286 20,11.684 20,12C20,12.316 20.2554,12.5714 20.5714,12.5714ZM17.5531,17.5531C17.6366,17.4691 17.684,17.3669 17.7023,17.2594C17.7177,17.1697 17.7063,17.0789 17.6783,16.9914C17.6753,16.9822 17.6727,16.9729 17.6701,16.9637C17.6649,16.9448 17.6597,16.926 17.6509,16.908L17.664,16.9206L17.6891,16.9457C15.4051,11.396 14.0091,10.0417 13.9834,10.0171C13.9589,9.9914 12.6051,8.5954 7.0549,6.3114L7.0794,6.3354L7.0926,6.3497C7.0899,6.3481 7.0867,6.3472 7.0835,6.3463C7.0811,6.3456 7.0788,6.345 7.0766,6.344C6.8691,6.2474 6.6183,6.2766 6.4474,6.4474C6.38,6.5143 6.3417,6.596 6.3166,6.68C6.28,6.8046 6.2857,6.9366 6.3383,7.0577C6.3403,7.0627 6.3416,7.0678 6.3429,7.073C6.3447,7.0798 6.3465,7.0867 6.3497,7.0931L6.3114,7.0549C8.5954,12.6051 9.9914,13.9589 10.0171,13.9834C10.028,13.9949 10.292,14.2663 11.0423,14.7566C11.9874,15.3749 13.7154,16.3429 16.6806,17.5783C16.7275,17.5976 16.7723,17.6166 16.8175,17.6358C16.8592,17.6535 16.9013,17.6713 16.9457,17.6897L16.9411,17.6851L16.908,17.6514C17.1177,17.756 17.3771,17.7286 17.5531,17.5531ZM7.9194,7.92C12.0171,9.7177 13.1571,10.8069 13.1691,10.8189C13.192,10.8423 14.2829,11.9823 16.0806,16.0806C11.9829,14.2834 10.8429,13.1937 10.8309,13.1817C10.808,13.1583 9.7171,12.0177 7.9194,7.92ZM11.4286,3.4286C11.4286,3.744 11.684,4 12,4C12.316,4 12.5714,3.744 12.5714,3.4286V2.8571C12.5714,2.5417 12.316,2.2857 12,2.2857C11.684,2.2857 11.4286,2.5417 11.4286,2.8571V3.4286ZM12.5714,20.5714C12.5714,20.2554 12.316,20 12,20C11.684,20 11.4286,20.2554 11.4286,20.5714V21.1429C11.4286,21.4589 11.684,21.7143 12,21.7143C12.316,21.7143 12.5714,21.4589 12.5714,21.1429V20.5714ZM2.8571,12.5714H3.4286C3.7446,12.5714 4,12.316 4,12C4,11.684 3.7446,11.4286 3.4286,11.4286H2.8571C2.5411,11.4286 2.2857,11.684 2.2857,12C2.2857,12.316 2.5411,12.5714 2.8571,12.5714Z" />
android:pathData="M0,12C0,18.6274 5.3726,24 12,24C18.6274,24 24,18.6274 24,12C24,5.3726 18.6274,0 12,0C5.3726,0 0,5.3726 0,12ZM1.1429,12C1.1429,6.004 6.004,1.1429 12,1.1429C17.996,1.1429 22.8571,6.004 22.8571,12C22.8571,17.996 17.996,22.8571 12,22.8571C6.004,22.8571 1.1429,17.996 1.1429,12ZM20.5714,12.5714H21.1429C21.4589,12.5714 21.7143,12.316 21.7143,12C21.7143,11.684 21.4589,11.4286 21.1429,11.4286H20.5714C20.2554,11.4286 20,11.684 20,12C20,12.316 20.2554,12.5714 20.5714,12.5714ZM17.5531,17.5531C17.6366,17.4691 17.684,17.3669 17.7023,17.2594C17.7177,17.1697 17.7063,17.0789 17.6783,16.9914C17.6753,16.9822 17.6727,16.9729 17.6701,16.9637C17.6649,16.9448 17.6597,16.926 17.6509,16.908L17.664,16.9206L17.6891,16.9457C15.4051,11.396 14.0091,10.0417 13.9834,10.0171C13.9589,9.9914 12.6051,8.5954 7.0549,6.3114L7.0794,6.3354L7.0926,6.3497C7.0899,6.3481 7.0867,6.3472 7.0835,6.3463C7.0811,6.3456 7.0788,6.345 7.0766,6.344C6.8691,6.2474 6.6183,6.2766 6.4474,6.4474C6.38,6.5143 6.3417,6.596 6.3166,6.68C6.28,6.8046 6.2857,6.9366 6.3383,7.0577C6.3403,7.0627 6.3416,7.0678 6.3429,7.073C6.3447,7.0798 6.3465,7.0867 6.3497,7.0931L6.3114,7.0549C8.5954,12.6051 9.9914,13.9589 10.0171,13.9834C10.028,13.9949 10.292,14.2663 11.0423,14.7566C11.9874,15.3749 13.7154,16.3429 16.6806,17.5783C16.7275,17.5976 16.7723,17.6166 16.8175,17.6358C16.8592,17.6535 16.9013,17.6713 16.9457,17.6897L16.9411,17.6851L16.908,17.6514C17.1177,17.756 17.3771,17.7286 17.5531,17.5531ZM7.9194,7.92C12.0171,9.7177 13.1571,10.8069 13.1691,10.8189C13.192,10.8423 14.2829,11.9823 16.0806,16.0806C11.9829,14.2834 10.8429,13.1937 10.8309,13.1817C10.808,13.1583 9.7171,12.0177 7.9194,7.92ZM11.4286,3.4286C11.4286,3.744 11.684,4 12,4C12.316,4 12.5714,3.744 12.5714,3.4286V2.8571C12.5714,2.5417 12.316,2.2857 12,2.2857C11.684,2.2857 11.4286,2.5417 11.4286,2.8571V3.4286ZM12.5714,20.5714C12.5714,20.2554 12.316,20 12,20C11.684,20 11.4286,20.2554 11.4286,20.5714V21.1429C11.4286,21.4589 11.684,21.7143 12,21.7143C12.316,21.7143 12.5714,21.4589 12.5714,21.1429V20.5714ZM2.8571,12.5714H3.4286C3.7446,12.5714 4,12.316 4,12C4,11.684 3.7446,11.4286 3.4286,11.4286H2.8571C2.5411,11.4286 2.2857,11.684 2.2857,12C2.2857,12.316 2.5411,12.5714 2.8571,12.5714Z"
tools:ignore="VectorPath" />
</vector>
12 changes: 0 additions & 12 deletions app/src/main/res/drawable/ic_logo_with_dot.xml

This file was deleted.

10 changes: 0 additions & 10 deletions app/src/main/res/drawable/ic_menu_closed.xml

This file was deleted.

10 changes: 0 additions & 10 deletions app/src/main/res/drawable/ic_menu_open.xml

This file was deleted.

3 changes: 2 additions & 1 deletion app/src/main/res/drawable/ic_profile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
<path
android:fillColor="#FF000000"
android:fillType="evenOdd"
android:pathData="M24,45C12.402,45 3,35.598 3,24S12.402,3 24,3s21,9.402 21,21S35.598,45 24,45zM35.633,39c-0.157,-0.231 -0.355,-0.518 -0.514,-0.742c-0.277,-0.394 -0.554,-0.788 -0.802,-1.178C34.305,37.062 32.935,35.224 28,35c-1.717,0 -2.965,-1.288 -2.968,-3.066L25,31c0,-0.135 -0.016,0.148 0,0v-1l1,-1c0.731,-0.339 1.66,-0.909 2.395,-1.464l0.135,-0.093C29.111,27.074 29.923,26.297 30,26l0.036,-0.381C30.409,23.696 31,20.198 31,19c0,-4.71 -2.29,-7 -7,-7c-4.775,0 -7,2.224 -7,7c0,1.23 0.591,4.711 0.963,6.616l0.035,0.352c0.063,0.313 0.799,1.054 1.449,1.462l0.098,0.062C20.333,28.043 21.275,28.657 22,29l1,1v1c0.014,0.138 0,-0.146 0,0l-0.033,0.934c0,1.775 -1.246,3.064 -2.883,3.064c-0.001,0 -0.002,0 -0.003,0c-4.956,0.201 -6.393,2.077 -6.395,2.077c-0.252,0.396 -0.528,0.789 -0.807,1.184c-0.157,0.224 -0.355,0.51 -0.513,0.741c3.217,2.498 7.245,4 11.633,4S32.416,41.498 35.633,39zM24,5C13.507,5 5,13.507 5,24c0,5.386 2.25,10.237 5.85,13.694C11.232,37.129 11.64,36.565 12,36c0,0 1.67,-2.743 8,-3c0.645,0 0.967,-0.422 0.967,-1.066h0.001C20.967,31.413 20.967,31 20.967,31c0,-0.13 -0.021,-0.247 -0.027,-0.373c-0.724,-0.342 -1.564,-0.814 -2.539,-1.494c0,0 -2.4,-1.476 -2.4,-3.133c0,0 -1,-5.116 -1,-7c0,-4.644 1.986,-9 9,-9c6.92,0 9,4.356 9,9c0,1.838 -1,7 -1,7c0,1.611 -2.4,3.133 -2.4,3.133c-0.955,0.721 -1.801,1.202 -2.543,1.546c-0.005,0.109 -0.023,0.209 -0.023,0.321c0,0 -0.001,0.413 -0.001,0.934h0.001C27.033,32.578 27.355,33 28,33c6.424,0.288 8,3 8,3c0.36,0.565 0.767,1.129 1.149,1.694C40.749,34.237 43,29.386 43,24C43,13.507 34.493,5 24,5z" />
android:pathData="M24,45C12.402,45 3,35.598 3,24S12.402,3 24,3s21,9.402 21,21S35.598,45 24,45zM35.633,39c-0.157,-0.231 -0.355,-0.518 -0.514,-0.742c-0.277,-0.394 -0.554,-0.788 -0.802,-1.178C34.305,37.062 32.935,35.224 28,35c-1.717,0 -2.965,-1.288 -2.968,-3.066L25,31c0,-0.135 -0.016,0.148 0,0v-1l1,-1c0.731,-0.339 1.66,-0.909 2.395,-1.464l0.135,-0.093C29.111,27.074 29.923,26.297 30,26l0.036,-0.381C30.409,23.696 31,20.198 31,19c0,-4.71 -2.29,-7 -7,-7c-4.775,0 -7,2.224 -7,7c0,1.23 0.591,4.711 0.963,6.616l0.035,0.352c0.063,0.313 0.799,1.054 1.449,1.462l0.098,0.062C20.333,28.043 21.275,28.657 22,29l1,1v1c0.014,0.138 0,-0.146 0,0l-0.033,0.934c0,1.775 -1.246,3.064 -2.883,3.064c-0.001,0 -0.002,0 -0.003,0c-4.956,0.201 -6.393,2.077 -6.395,2.077c-0.252,0.396 -0.528,0.789 -0.807,1.184c-0.157,0.224 -0.355,0.51 -0.513,0.741c3.217,2.498 7.245,4 11.633,4S32.416,41.498 35.633,39zM24,5C13.507,5 5,13.507 5,24c0,5.386 2.25,10.237 5.85,13.694C11.232,37.129 11.64,36.565 12,36c0,0 1.67,-2.743 8,-3c0.645,0 0.967,-0.422 0.967,-1.066h0.001C20.967,31.413 20.967,31 20.967,31c0,-0.13 -0.021,-0.247 -0.027,-0.373c-0.724,-0.342 -1.564,-0.814 -2.539,-1.494c0,0 -2.4,-1.476 -2.4,-3.133c0,0 -1,-5.116 -1,-7c0,-4.644 1.986,-9 9,-9c6.92,0 9,4.356 9,9c0,1.838 -1,7 -1,7c0,1.611 -2.4,3.133 -2.4,3.133c-0.955,0.721 -1.801,1.202 -2.543,1.546c-0.005,0.109 -0.023,0.209 -0.023,0.321c0,0 -0.001,0.413 -0.001,0.934h0.001C27.033,32.578 27.355,33 28,33c6.424,0.288 8,3 8,3c0.36,0.565 0.767,1.129 1.149,1.694C40.749,34.237 43,29.386 43,24C43,13.507 34.493,5 24,5z"
tools:ignore="VectorPath" />
</vector>
4 changes: 3 additions & 1 deletion app/src/main/res/drawable/ic_settings.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M19.14,12.94c0.04,-0.3 0.06,-0.61 0.06,-0.94c0,-0.32 -0.02,-0.64 -0.07,-0.94l2.03,-1.58c0.18,-0.14 0.23,-0.41 0.12,-0.61l-1.92,-3.32c-0.12,-0.22 -0.37,-0.29 -0.59,-0.22l-2.39,0.96c-0.5,-0.38 -1.03,-0.7 -1.62,-0.94L14.4,2.81c-0.04,-0.24 -0.24,-0.41 -0.48,-0.41h-3.84c-0.24,0 -0.43,0.17 -0.47,0.41L9.25,5.35C8.66,5.59 8.12,5.92 7.63,6.29L5.24,5.33c-0.22,-0.08 -0.47,0 -0.59,0.22L2.74,8.87C2.62,9.08 2.66,9.34 2.86,9.48l2.03,1.58C4.84,11.36 4.8,11.69 4.8,12s0.02,0.64 0.07,0.94l-2.03,1.58c-0.18,0.14 -0.23,0.41 -0.12,0.61l1.92,3.32c0.12,0.22 0.37,0.29 0.59,0.22l2.39,-0.96c0.5,0.38 1.03,0.7 1.62,0.94l0.36,2.54c0.05,0.24 0.24,0.41 0.48,0.41h3.84c0.24,0 0.44,-0.17 0.47,-0.41l0.36,-2.54c0.59,-0.24 1.13,-0.56 1.62,-0.94l2.39,0.96c0.22,0.08 0.47,0 0.59,-0.22l1.92,-3.32c0.12,-0.22 0.07,-0.47 -0.12,-0.61L19.14,12.94zM12,15.6c-1.98,0 -3.6,-1.62 -3.6,-3.6s1.62,-3.6 3.6,-3.6s3.6,1.62 3.6,3.6S13.98,15.6 12,15.6z"/>
android:pathData="M19.14,12.94c0.04,-0.3 0.06,-0.61 0.06,-0.94c0,-0.32 -0.02,-0.64 -0.07,-0.94l2.03,-1.58c0.18,-0.14 0.23,-0.41 0.12,-0.61l-1.92,-3.32c-0.12,-0.22 -0.37,-0.29 -0.59,-0.22l-2.39,0.96c-0.5,-0.38 -1.03,-0.7 -1.62,-0.94L14.4,2.81c-0.04,-0.24 -0.24,-0.41 -0.48,-0.41h-3.84c-0.24,0 -0.43,0.17 -0.47,0.41L9.25,5.35C8.66,5.59 8.12,5.92 7.63,6.29L5.24,5.33c-0.22,-0.08 -0.47,0 -0.59,0.22L2.74,8.87C2.62,9.08 2.66,9.34 2.86,9.48l2.03,1.58C4.84,11.36 4.8,11.69 4.8,12s0.02,0.64 0.07,0.94l-2.03,1.58c-0.18,0.14 -0.23,0.41 -0.12,0.61l1.92,3.32c0.12,0.22 0.37,0.29 0.59,0.22l2.39,-0.96c0.5,0.38 1.03,0.7 1.62,0.94l0.36,2.54c0.05,0.24 0.24,0.41 0.48,0.41h3.84c0.24,0 0.44,-0.17 0.47,-0.41l0.36,-2.54c0.59,-0.24 1.13,-0.56 1.62,-0.94l2.39,0.96c0.22,0.08 0.47,0 0.59,-0.22l1.92,-3.32c0.12,-0.22 0.07,-0.47 -0.12,-0.61L19.14,12.94zM12,15.6c-1.98,0 -3.6,-1.62 -3.6,-3.6s1.62,-3.6 3.6,-3.6s3.6,1.62 3.6,3.6S13.98,15.6 12,15.6z"
tools:ignore="VectorPath" />
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/layout/anime_search_empty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="Search for any anime"
android:text="@string/search_for_any_anime"
android:textAlignment="center"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
Expand Down
Loading

0 comments on commit d6b91b8

Please sign in to comment.