Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import com.lagradost.cloudstream3.utils.*
import org.mozilla.javascript.Context
import org.mozilla.javascript.EvaluatorException
import org.mozilla.javascript.Scriptable
import java.util.*


open class Userload : ExtractorApi() {
override var name = "Userload"
Expand All @@ -16,7 +14,7 @@ open class Userload : ExtractorApi() {

private fun splitInput(input: String): List<String> {
var counter = 0
val array = ArrayList<String>()
val array = mutableListOf<String>()
var buffer = ""
for (c in input) {
when (c) {
Expand Down