@cloud411716/fancy-webnovel 1.0.27 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/scan/index.js +4 -3
- package/package.json +1 -1
package/commands/scan/index.js
CHANGED
|
@@ -132,10 +132,11 @@ export function apply(ctx) {
|
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
// ---------- platform selection ----------
|
|
135
|
-
notify(session, 'success', scan.platformList());
|
|
136
|
-
|
|
137
135
|
const platformResult = await ctx.userQuestions.ask({
|
|
138
|
-
questions: [
|
|
136
|
+
questions: [{
|
|
137
|
+
...scan.askPlatform(),
|
|
138
|
+
question: `${scan.platformList()}\n\n请选择要扫的平台(输入编号 1-4):`,
|
|
139
|
+
}],
|
|
139
140
|
agent: invocation.agent,
|
|
140
141
|
signal,
|
|
141
142
|
});
|