This commit is contained in:
GH Action - Upstream Sync 2023-01-10 12:35:32 +00:00
commit a39ee71e4a
2 changed files with 3 additions and 2 deletions

View File

@ -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">

View File

@ -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;
} }