Skip to content

Commit

Permalink
fixed wrong blacklistUrl call
Browse files Browse the repository at this point in the history
  • Loading branch information
knighthat committed Nov 3, 2024
1 parent ac26e55 commit d49b2ed
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package me.knighthat.piped.request
import io.ktor.http.HttpMethod
import it.fast4x.innertube.utils.runCatchingNonCancellable
import me.knighthat.common.HttpFetcher
import me.knighthat.invidious.Invidious
import me.knighthat.piped.Piped
import me.knighthat.piped.response.PlayerResponse

Expand All @@ -23,7 +22,7 @@ suspend fun Piped.player( videoId: String ): Result<PlayerResponse?>? =
* data in the future shorter because there's less
* link to fetch, also less error to check.
*/
Invidious.blacklistUrl(hostUrl)
blacklistUrl(hostUrl)
null
}
}

0 comments on commit d49b2ed

Please sign in to comment.