refactor audio to use custom listener stores

This commit is contained in:
Ollie Taylor
2023-02-25 14:16:19 +00:00
parent acbdd46fe3
commit 42c27b2469
13 changed files with 259 additions and 313 deletions
+2 -2
View File
@@ -2,11 +2,11 @@ import { podcast_preferences } from '$lib/preferences';
import { podcast_progress } from '$lib/progress';
export function save_podcast_state() {
podcast_progress.save_all();
podcast_progress.save();
podcast_preferences.save();
}
export function load_podcast_state() {
podcast_progress.load_all();
podcast_progress.load();
podcast_preferences.load();
}