small fix

This commit is contained in:
sora 2023-07-25 15:18:03 +07:00
parent 571f455100
commit e39b0b97c9
1 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package com.hexated
import com.lagradost.cloudstream3.LoadResponse
import com.lagradost.cloudstream3.TvType
class Serienstream : Aniworld() {
@ -9,4 +10,8 @@ class Serienstream : Aniworld() {
TvType.Movie,
TvType.TvSeries,
)
override suspend fun load(url: String): LoadResponse? {
return super.load(url).apply { this?.type = TvType.TvSeries }
}
}