chore: fix calling subscription settings endpoints - skip e2e

This commit is contained in:
Karol Sójko
2024-03-11 11:40:58 +01:00
parent 6f571936c3
commit 7febc1fac6
2 changed files with 8 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ export class SettingsService extends AbstractService implements SettingsClientIn
}
async updateSubscriptionSetting(name: SettingName, payload: string, sensitive = false) {
return this.provider.updateSetting(name, payload, sensitive)
return this.provider.updateSubscriptionSetting(name, payload, sensitive)
}
async updateSetting(name: SettingName, payload: string, sensitive = false) {