fix: replace empty catch blocks with error logging
This commit is contained in:
@@ -69,7 +69,9 @@ export const saveProgress = async (
|
||||
episode: state.currentEpisode,
|
||||
seconds: savedTime,
|
||||
};
|
||||
} catch {}
|
||||
} catch (e) {
|
||||
console.warn("Progress save failed:", e);
|
||||
}
|
||||
})();
|
||||
|
||||
saveProgressInFlight = request;
|
||||
|
||||
Reference in New Issue
Block a user