File tree Expand file tree Collapse file tree 3 files changed +21
-11
lines changed
com/lagradost/cloudstreamtest Expand file tree Collapse file tree 3 files changed +21
-11
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ publishing {
17
17
maven(MavenPublication ) {
18
18
groupId ' com.lagradost'
19
19
artifactId ' cloudstream-api'
20
- version ' 0.1.4 '
20
+ version ' 0.1.5 '
21
21
from components. java
22
22
}
23
23
}
Original file line number Diff line number Diff line change 1
1
package android.util
2
2
3
- object Log {
4
- fun d (tag : String , message : String ) {
5
- println (" DEBUG $tag : $message " )
6
- }
3
+ class Log {
4
+ companion object {
5
+ @JvmStatic
6
+ fun d (tag : String , message : String ) {
7
+ println (" DEBUG $tag : $message " )
8
+ }
7
9
8
- fun i (tag : String , message : String ) {
9
- println (" INFO $tag : $message " )
10
- }
10
+ @JvmStatic
11
+ fun i (tag : String , message : String ) {
12
+ println (" INFO $tag : $message " )
13
+ }
14
+
15
+ @JvmStatic
16
+ fun v (tag : String , message : String ) {
17
+ println (" VERBOSE $tag : $message " )
18
+ }
11
19
12
- fun v (tag : String , message : String ) {
13
- println (" VERBOSE $tag : $message " )
20
+ @JvmStatic
21
+ fun w (tag : String , message : String ) {
22
+ println (" WARNING $tag : $message " )
23
+ }
14
24
}
15
25
}
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ open class ProviderTester(private val provider: MainAPI) {
80
80
val item = mainPage.first().items.first().list.first()
81
81
println (" \n\n Testing Search: -------------------" )
82
82
83
- val searchResponses = testSearch(item.name)
83
+ val searchResponses = testSearch(query ? : item.name)
84
84
assert (searchResponses.isNotEmpty())
85
85
86
86
item
You can’t perform that action at this time.
0 commit comments