Skip to content

Commit

Permalink
fix: sticker panel load info.json
Browse files Browse the repository at this point in the history
Signed-off-by: Hicores <me@hicore.cc>
  • Loading branch information
Hicores committed Aug 6, 2023
1 parent e4dfcd0 commit e2a5547
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public synchronized static List<LocalPicItems> getPicItems(String pathName) {
localPath.MD5 = path.getString("MD5");
localPath.fileName = path.optString("fileName");
localPath.addTime = path.optLong("addTime");
localPath.type = path.getInt("type");
localPath.type = path.optInt("type",1);
localPath.url = path.optString("url");
localPath.thumbName = path.optString("thumbName");
localPath.thumbUrl = path.optString("thumbUrl");
Expand Down

0 comments on commit e2a5547

Please sign in to comment.