fix(whispering): Recordings Page Output Folder Button Inconsistency #1107
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix: Recordings Page Output Folder Button Inconsistency
This fixes the "Open Recordings Folder" button on the Recordings page to respect the user's custom output folder setting from Settings > Recording. Previously, only the Settings page button opened the correct location, while the Recordings page button always opened the hardcoded default app data directory.
The fix ensures both buttons use the same logic: check
settings.value['recording.cpal.outputFolder']first, then fall back toPATHS.DB.RECORDINGS()if not configured.Key areas affected:
/routes/(app)/(config)/recordings/+page.svelte)User impact before fix:
~/Documents/Recordings)~/Documents/Recordings~/Documents/Recordings~/Library/Application Support/whispering/recordings(default location)After fix:
Both "Open Output Folder" buttons consistently open the user's configured output folder, making it easy to access recordings from either location in the app.
Type of Change
fix: Bug fixRelated Issue
Closes #1106