mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-28 03:58:39 +00:00
tweaks (#1862)
* opt: linter * tweaks * opt: TopImage * update * remove repaintBoundary [skip ci] --------- Co-authored-by: dom <githubaccount56556@proton.me>
This commit is contained in:
committed by
GitHub
parent
99128b2641
commit
6cda3a1880
@@ -482,7 +482,7 @@ abstract final class MemberHttp {
|
||||
}
|
||||
}
|
||||
|
||||
static Future<LoadingState<Null>> specialAction({
|
||||
static Future<LoadingState<void>> specialAction({
|
||||
int? fid,
|
||||
bool isAdd = true,
|
||||
}) async {
|
||||
@@ -502,7 +502,7 @@ abstract final class MemberHttp {
|
||||
}
|
||||
|
||||
// 设置分组
|
||||
static Future<LoadingState<Null>> addUsers(String fids, String tagids) async {
|
||||
static Future<LoadingState<void>> addUsers(String fids, String tagids) async {
|
||||
final res = await Request().post(
|
||||
Api.addUsers,
|
||||
queryParameters: {
|
||||
@@ -555,7 +555,7 @@ abstract final class MemberHttp {
|
||||
}
|
||||
}
|
||||
|
||||
static Future<LoadingState<Null>> createFollowTag(Object tagName) async {
|
||||
static Future<LoadingState<void>> createFollowTag(Object tagName) async {
|
||||
final res = await Request().post(
|
||||
Api.createFollowTag,
|
||||
queryParameters: {
|
||||
@@ -575,7 +575,7 @@ abstract final class MemberHttp {
|
||||
}
|
||||
}
|
||||
|
||||
static Future<LoadingState<Null>> updateFollowTag(
|
||||
static Future<LoadingState<void>> updateFollowTag(
|
||||
Object tagid,
|
||||
Object name,
|
||||
) async {
|
||||
@@ -599,7 +599,7 @@ abstract final class MemberHttp {
|
||||
}
|
||||
}
|
||||
|
||||
static Future<LoadingState<Null>> delFollowTag(Object tagid) async {
|
||||
static Future<LoadingState<void>> delFollowTag(Object tagid) async {
|
||||
final res = await Request().post(
|
||||
Api.delFollowTag,
|
||||
queryParameters: {
|
||||
|
||||
Reference in New Issue
Block a user