Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-02-12 14:20:16 +08:00
parent 6502b97388
commit 09753b6bbd
2 changed files with 24 additions and 3 deletions

View File

@@ -79,10 +79,14 @@ class DynamicsHttp {
//
static Future dynamicDetail({
String? id,
dynamic rid,
dynamic type,
}) async {
var res = await Request().get(Api.dynamicDetail, queryParameters: {
'timezone_offset': -480,
'id': id,
if (id != null) 'id': id,
if (rid != null) 'rid': rid,
if (type != null) 'type': type,
'features': 'itemOpusStyle',
});
if (res.data['code'] == 0) {