Merge branch 'main' of https://github.com/FongMi/CatVodSpider
This commit is contained in:
commit
a39ee71e4a
|
|
@ -6,7 +6,8 @@
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name">
|
android:label="@string/app_name"
|
||||||
|
android:usesCleartextTraffic="true">
|
||||||
<activity
|
<activity
|
||||||
android:name=".demo.MainActivity"
|
android:name=".demo.MainActivity"
|
||||||
android:exported="true">
|
android:exported="true">
|
||||||
|
|
|
||||||
|
|
@ -144,7 +144,7 @@ public class Result {
|
||||||
this.page = page > 0 ? page : Integer.MAX_VALUE;
|
this.page = page > 0 ? page : Integer.MAX_VALUE;
|
||||||
this.limit = limit > 0 ? limit : Integer.MAX_VALUE;
|
this.limit = limit > 0 ? limit : Integer.MAX_VALUE;
|
||||||
this.total = total > 0 ? total : Integer.MAX_VALUE;
|
this.total = total > 0 ? total : Integer.MAX_VALUE;
|
||||||
this.pagecount = count > 0 ? page : Integer.MAX_VALUE;
|
this.pagecount = count > 0 ? count : Integer.MAX_VALUE;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue