Skip to content

Commit e43eb92

Browse files
committed
fix: update xHttpExtraParams assignment in FormatHostsService
- Changed the assignment of xHttpExtraParams to use inputHost.xHttpExtraParams instead of settings?.extra
1 parent 3d61d4f commit e43eb92

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/modules/subscription-template/generators/format-hosts.service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ export class FormatHostsService {
123123
heartbeatPeriod: settings?.extra?.heartbeatPeriod || undefined,
124124
mode: settings?.mode || 'auto',
125125
};
126-
xHttpExtraParams = settings?.extra;
126+
127+
xHttpExtraParams = inputHost.xHttpExtraParams;
127128

128129
break;
129130
}

0 commit comments

Comments
 (0)