fix: main json object format
This commit is contained in:
parent
9c87b3e7ea
commit
23b1ad7512
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.526" package="org.tsanie.pixiview" android:versionCode="21">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.531" package="org.tsanie.pixiview" android:versionCode="22">
|
||||
<uses-sdk android:minSdkVersion="25" android:targetSdkVersion="28" />
|
||||
<application android:label="Pixiview" android:icon="@mipmap/icon" android:roundIcon="@mipmap/icon_round"></application>
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
|
@ -29,8 +29,8 @@
|
||||
<string>com.apple.share-services</string>
|
||||
</dict>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.526</string>
|
||||
<string>1.0.531</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>21</string>
|
||||
<string>22</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
@ -79,9 +79,9 @@
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.526</string>
|
||||
<string>1.0.531</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>21</string>
|
||||
<string>22</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>China</string>
|
||||
</dict>
|
||||
|
@ -205,7 +205,7 @@ namespace Pixiview.Illust
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return data.body.page.recommend.Select(id =>
|
||||
return data.body.page.recommend.ids.Select(id =>
|
||||
data.body.thumbnails.illust.FirstOrDefault(l => l.illustId == id)?.ConvertToItem());
|
||||
}
|
||||
|
||||
|
@ -106,6 +106,10 @@ namespace Pixiview.Utils
|
||||
return default;
|
||||
}
|
||||
|
||||
if (content == null)
|
||||
{
|
||||
content = string.Empty;
|
||||
}
|
||||
bool rtn = false;
|
||||
T result = default;
|
||||
if (namehandler != null)
|
||||
@ -118,7 +122,8 @@ namespace Pixiview.Utils
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
App.DebugError("load", $"failed to parse illust JSON object, content: {content}, error: {ex.Message}");
|
||||
var memo = content.Length < 20 ? content : content.Substring(0, 20) + "...";
|
||||
App.DebugError("load", $"failed to parse illust JSON object, content: {memo}, error: {ex.Message}");
|
||||
error = content;
|
||||
return default;
|
||||
}
|
||||
@ -162,7 +167,8 @@ namespace Pixiview.Utils
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
App.DebugError("load", $"failed to parse illust JSON object, content: {content}, error: {ex.Message}");
|
||||
var memo = content.Length < 20 ? content : content.Substring(0, 20) + "...";
|
||||
App.DebugError("load", $"failed to parse illust JSON object, content: {memo}, error: {ex.Message}");
|
||||
error = content;
|
||||
return default;
|
||||
}
|
||||
|
@ -104,13 +104,18 @@ namespace Pixiview.Utils
|
||||
public class Page
|
||||
{
|
||||
public int[] follow;
|
||||
public string[] recommend;
|
||||
public Recommends recommend;
|
||||
public RecommendByTag[] recommendByTags;
|
||||
public Ranking ranking;
|
||||
public RecommendUser[] recommendUser;
|
||||
public EditorRecommend[] editorRecommend;
|
||||
public string[] newPost;
|
||||
|
||||
public class Recommends
|
||||
{
|
||||
public string[] ids;
|
||||
}
|
||||
|
||||
public class RecommendByTag
|
||||
{
|
||||
public string tag;
|
||||
|
Loading…
x
Reference in New Issue
Block a user