From 798ff9a436e5b12722a86f20ad415b06b074c1ef Mon Sep 17 00:00:00 2001 From: Antony Date: Sun, 21 Aug 2022 00:38:34 +0200 Subject: [PATCH] remove AbstractSubApi from GithubApi.kt --- .../lagradost/cloudstream3/syncproviders/providers/GithubApi.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/GithubApi.kt b/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/GithubApi.kt index b0b8b070..cfdbd24f 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/GithubApi.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/GithubApi.kt @@ -8,7 +8,7 @@ import com.lagradost.cloudstream3.syncproviders.InAppAuthAPI import com.lagradost.cloudstream3.syncproviders.InAppAuthAPIManager -class GithubApi(index: Int) : InAppAuthAPIManager(index), AbstractSubApi { +class GithubApi(index: Int) : InAppAuthAPIManager(index){ override val idPrefix = "Github" override val name = "Github" override val icon = R.drawable.ic_github_logo