|
@@ -5,7 +5,6 @@ import android.graphics.Color
|
|
import com.google.gson.Gson
|
|
import com.google.gson.Gson
|
|
import eu.kanade.tachiyomi.R
|
|
import eu.kanade.tachiyomi.R
|
|
import eu.kanade.tachiyomi.data.database.models.Track
|
|
import eu.kanade.tachiyomi.data.database.models.Track
|
|
-import eu.kanade.tachiyomi.data.preference.getOrDefault
|
|
|
|
import eu.kanade.tachiyomi.data.track.TrackService
|
|
import eu.kanade.tachiyomi.data.track.TrackService
|
|
import eu.kanade.tachiyomi.data.track.model.TrackSearch
|
|
import eu.kanade.tachiyomi.data.track.model.TrackSearch
|
|
import rx.Completable
|
|
import rx.Completable
|
|
@@ -75,7 +74,7 @@ class Anilist(private val context: Context, id: Int) : TrackService(id) {
|
|
override fun getCompletionStatus(): Int = COMPLETED
|
|
override fun getCompletionStatus(): Int = COMPLETED
|
|
|
|
|
|
override fun getScoreList(): List<String> {
|
|
override fun getScoreList(): List<String> {
|
|
- return when (scorePreference.getOrDefault()) {
|
|
|
|
|
|
+ return when (scorePreference.get()) {
|
|
// 10 point
|
|
// 10 point
|
|
POINT_10 -> IntRange(0, 10).map(Int::toString)
|
|
POINT_10 -> IntRange(0, 10).map(Int::toString)
|
|
// 100 point
|
|
// 100 point
|
|
@@ -91,7 +90,7 @@ class Anilist(private val context: Context, id: Int) : TrackService(id) {
|
|
}
|
|
}
|
|
|
|
|
|
override fun indexToScore(index: Int): Float {
|
|
override fun indexToScore(index: Int): Float {
|
|
- return when (scorePreference.getOrDefault()) {
|
|
|
|
|
|
+ return when (scorePreference.get()) {
|
|
// 10 point
|
|
// 10 point
|
|
POINT_10 -> index * 10f
|
|
POINT_10 -> index * 10f
|
|
// 100 point
|
|
// 100 point
|
|
@@ -115,7 +114,7 @@ class Anilist(private val context: Context, id: Int) : TrackService(id) {
|
|
override fun displayScore(track: Track): String {
|
|
override fun displayScore(track: Track): String {
|
|
val score = track.score
|
|
val score = track.score
|
|
|
|
|
|
- return when (scorePreference.getOrDefault()) {
|
|
|
|
|
|
+ return when (scorePreference.get()) {
|
|
POINT_5 -> when (score) {
|
|
POINT_5 -> when (score) {
|
|
0f -> "0 ★"
|
|
0f -> "0 ★"
|
|
else -> "${((score + 10) / 20).toInt()} ★"
|
|
else -> "${((score + 10) / 20).toInt()} ★"
|
|
@@ -193,7 +192,7 @@ class Anilist(private val context: Context, id: Int) : TrackService(id) {
|
|
|
|
|
|
override fun logout() {
|
|
override fun logout() {
|
|
super.logout()
|
|
super.logout()
|
|
- preferences.trackToken(this).set(null)
|
|
|
|
|
|
+ preferences.trackToken(this).delete()
|
|
interceptor.setAuth(null)
|
|
interceptor.setAuth(null)
|
|
}
|
|
}
|
|
|
|
|