Skip to content

Commit

Permalink
修复导入问题
Browse files Browse the repository at this point in the history
  • Loading branch information
chivehao committed Oct 22, 2024
1 parent 6fcff3b commit ddae8de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

更新日志文档,版本顺序从新到旧,最新版本在最前(上)面。

# 17.1.1

- 修复导入问题

# 17.1.0

- 优化导入效率
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group=run.ikaros.plugin.alist
description=A ikaros plugin for alist.
version=17.1.0
version=17.1.1
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private Mono<Void> createAttachmentRecursively(List<String> paths, Long parentId

AListAttachment[] attachments = fetchAttachments(paths);
return Flux.fromStream(Arrays.stream(attachments))
.parallel()
.subscribeOn(Schedulers.boundedElastic())
.map(aListAttachment -> {
List<String> newPaths = new ArrayList<>(paths);
newPaths.add(aListAttachment.getName());
Expand Down

0 comments on commit ddae8de

Please sign in to comment.