Skip to content

Commit e76145a

Browse files
authored
Merge pull request #2511 from uProxy/missing-do-in-background
Fix missing call to doInBackground_
2 parents 98e4775 + dbc1d6d commit e76145a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generic_ui/polymer/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class Background {
7979
}
8080

8181
public updateGlobalSettings = (settings: uproxy_core_api.GlobalSettings): void => {
82-
this.connector_.sendMessage('update-global-settings', settings);
82+
this.doInBackground_('update-global-settings', settings);
8383
}
8484

8585
public restart = (): void => {

0 commit comments

Comments
 (0)