This commit is contained in:
Davidson Gomes
2023-12-01 21:24:38 -03:00
parent 359bd9f762
commit 4c69b059d4
4 changed files with 15 additions and 8 deletions

View File

@@ -253,10 +253,14 @@ export class InstanceController {
if (proxy) {
this.logger.verbose('creating proxy');
try {
this.proxyService.create(instance, {
enabled: true,
proxy,
});
this.proxyService.create(
instance,
{
enabled: true,
proxy,
},
false,
);
} catch (error) {
this.logger.log(error);
}