Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-07-07 11:54:28 +08:00
parent cae5befa63
commit 1946218df3
21 changed files with 446 additions and 334 deletions

View File

@@ -456,7 +456,7 @@ abstract final class DynamicsHttp {
static Future<LoadingState<TopicCardList?>> topicFeed({
required Object topicId,
required String offset,
String? offset,
required int sortBy,
}) async {
final res = await Request().get(
@@ -464,7 +464,7 @@ abstract final class DynamicsHttp {
queryParameters: {
'topic_id': topicId,
'sort_by': sortBy,
'offset': offset,
'offset': ?offset,
'page_size': 20,
'source': 'Web',
'features': Constants.dynFeatures,