mirror of
https://github.com/recloudstream/cloudstream-extensions.git
synced 2024-08-15 03:03:54 +00:00
Moved from outdated ip to actual url to fix video loading
This commit is contained in:
parent
8fa0cc51f2
commit
5daf0cd5f0
2 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 7
|
version = 8
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -252,9 +252,9 @@ class SuperStream : MainAPI() {
|
||||||
private val iv = base64Decode("d0VpcGhUbiE=")
|
private val iv = base64Decode("d0VpcGhUbiE=")
|
||||||
private val key = base64Decode("MTIzZDZjZWRmNjI2ZHk1NDIzM2FhMXc2")
|
private val key = base64Decode("MTIzZDZjZWRmNjI2ZHk1NDIzM2FhMXc2")
|
||||||
|
|
||||||
private val ip = base64Decode("aHR0cHM6Ly8xNTIuMzIuMTQ5LjE2MA==")
|
private val baseApiUrl = base64Decode("aHR0cHM6Ly9zaG93Ym94LnNoZWd1Lm5ldA==")
|
||||||
private val apiUrl =
|
private val apiUrl =
|
||||||
"$ip${base64Decode("L2FwaS9hcGlfY2xpZW50L2luZGV4Lw==")}"
|
"$baseApiUrl${base64Decode("L2FwaS9hcGlfY2xpZW50L2luZGV4Lw==")}"
|
||||||
|
|
||||||
// Another url because the first one sucks at searching
|
// Another url because the first one sucks at searching
|
||||||
// This one was revealed to me in a dream
|
// This one was revealed to me in a dream
|
||||||
|
|
Loading…
Reference in a new issue