We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 598582e commit 2691364Copy full SHA for 2691364
2 files changed
src/app/modules/settings/general/general.component.ts
@@ -46,7 +46,6 @@ export class GeneralComponent implements OnInit {
46
} else {
47
this.selectedProxyIndex = +index;
48
this.settings.proxy.enabled = true;
49
- this.settings.proxy.name = this.proxies[this.selectedProxyIndex].name;
50
}
51
52
src/app/services/settings.service.ts
@@ -76,6 +76,7 @@ export class SettingsService {
76
proxy: this.browser.isWebExtension
77
? {
78
enabled: false,
79
+ name: '',
80
81
: {
82
enabled: true,
0 commit comments