Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
opengs committed Mar 7, 2024
1 parent 32c30e5 commit 34a5845
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/module/distress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class Distress extends Module<Config> {
if (settings.itarmy.uuid !== '') {
args.push('--user-id', settings.itarmy.uuid)
}
args.push('--disable-auto-update', '--json-logs')
args.push('--child', '--json-logs')
if (config.concurrency > 0) {
args.push('--concurrency', config.concurrency.toString())
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "itarmykit",
"version": "1.3.5",
"version": "1.3.6",
"description": "IT Army Kit",
"productName": "IT Army Kit",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/modules/distressPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ const configTorConnections = ref(0);
const configExecutableArguments = ref("");
const configExecutableArgumentsPrefix = computed(() => {
return (
`--disable-auto-update --json-logs --concurrency ${configConcurrency.value}` +
`--json-logs --concurrency ${configConcurrency.value}` +
(configUseMyIP.value != 0 ? ` --use-my-ip ${configUseMyIP.value}` : "") +
(configTorConnections.value != 0
? ` --use-tor ${configTorConnections.value}`
Expand Down

0 comments on commit 34a5845

Please sign in to comment.