Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-27 20:54:41 +08:00
parent 25acf3a9bb
commit b51c646415
227 changed files with 768 additions and 764 deletions

View File

@@ -321,7 +321,7 @@ class DownloadService extends GetxService {
]);
final danmaku = res.removeAt(0).data;
for (var i in res) {
for (final i in res) {
if (i.isSuccess) {
danmaku.elems.addAll(i.data.elems);
}
@@ -596,7 +596,7 @@ typedef SetNotifier = Set<VoidCallback>;
extension SetNotifierExt on SetNotifier {
void refresh() {
for (var i in this) {
for (final i in this) {
i();
}
}