This commit is contained in:
2025-09-03 14:32:02 -04:00
parent c6e2b6e4d3
commit 03b751dda6
22 changed files with 1429 additions and 150 deletions

View File

@@ -25,7 +25,7 @@ export class ProfileSettingsManager extends ProfileContentManager {
else return [];
}
async getSetting(setting: ProfileSetting) {
async getSetting(setting: string) {
const settings = await this.getAllSettings();
return settings.find(s => s.Key == setting)?.Value || null;
}