2023-02-25 14:33:17 +00:00
|
|
|
import { user_preferences } from '$lib/preferences';
|
2023-02-25 01:04:08 +00:00
|
|
|
import { podcast_progress } from '$lib/progress';
|
2023-02-24 20:04:01 +00:00
|
|
|
|
|
|
|
|
export function load_podcast_state() {
|
2023-02-25 14:16:19 +00:00
|
|
|
podcast_progress.load();
|
2023-02-25 14:33:17 +00:00
|
|
|
user_preferences.load();
|
2023-02-24 20:04:01 +00:00
|
|
|
}
|