Skip to content

Commit b0642a5

Browse files
Update search_response.dart
1 parent 163d1f2 commit b0642a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Models/search_response.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ class SearchAllResult {
444444
return SearchAllResult(
445445
hasResult: json['hasResult'] ?? false,
446446
jumpTag: json['jumpTag'] ?? false,
447-
offset: json['offset'],
447+
offset: json['offset']??0,
448448
posts: json['posts'] != null ? posts : [],
449449
tagRank:
450450
json['tagRank'] != null ? TagInfo.fromJson(json['tagRank']) : null,

0 commit comments

Comments
 (0)