Skip to content

Commit

Permalink
Hotfix: fire this.saveSettings() for AI options so we see notice
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikodin committed Jan 20, 2025
1 parent 0b17cf7 commit c1a9d3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "scribe",
"name": "Scribe",
"version": "1.0.7",
"version": "1.0.8",
"minAppVersion": "0.15.0",
"description": "Record voice notes, Fill in lost thoughts, Transcribe the audio, Summarize & Visualize the text - All in one clip",
"author": "Mike Alicea",
Expand Down
4 changes: 2 additions & 2 deletions src/settings/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class ScribeSettingsTab extends PluginSettingTab {
}
component.onChange(async (value: LLM_MODELS) => {
this.plugin.settings.llmModel = value;
await this.plugin.saveSettings();
await this.saveSettings();
});

component.setValue(this.plugin.settings.llmModel);
Expand All @@ -141,7 +141,7 @@ export class ScribeSettingsTab extends PluginSettingTab {
}
component.onChange(async (value: TRANSCRIPT_PLATFORM) => {
this.plugin.settings.transcriptPlatform = value;
await this.plugin.saveSettings();
await this.saveSettings();
});

component.setValue(this.plugin.settings.transcriptPlatform);
Expand Down

0 comments on commit c1a9d3a

Please sign in to comment.